How to install packages via nimble on a machine without internet

2022-12-26 Thread softballsprite
You can find more information at [basket random](https://basketrandom.io) You could also create a local package list on the computer that is separated from the rest of the network, download the packages that you need, and then change the url th

How to install packages via nimble on a machine without internet

2022-08-31 Thread halloleo
Cool! Will try that.

How to install packages via nimble on a machine without internet

2022-08-31 Thread stisa
That might work, as long as you copy nimbleDir to the right path or pass the path when compiling (`nim c --NimblePath: `)

How to install packages via nimble on a machine without internet

2022-08-30 Thread halloleo
Thanks for the info. I guess that's what I'll do: I'll copy all the packages from a connected machine to the air-gapped one and then install the stuff there. But this brings me to an idea: Could I just do a `nimble install ` on a connected machine and then copy everything (with caches and else)

How to install packages via nimble on a machine without internet

2022-08-30 Thread federico3
Unfortunately Nimble does not have a concept of "tarball" packages like most languages, making it difficult to distribute or preserve the package ecosystem. You might be interested in

How to install packages via nimble on a machine without internet

2022-08-30 Thread stisa
Have a look at this: Basically, clone the package (and the dependencies), move them to a usb stick to get it on the air-gapped system, then run `nimble install` in the folders. You'll probably need to start from the lowest dependenc

How to install packages via nimble on a machine without internet

2022-08-30 Thread halloleo
I want get back into Nim and pick up an old project I had developed 18 months ago. I'd like to use nimlsp now, but I develop on an air-gapped network (no Internet access). How can I install a package (like nimlsp) via nimble _without_ internet access?