I am new to Julia and using JuliaPro.
I have two computers with the same OS (Windows) and the same version of JuliaPro. One computer has an internet connection and the other does not. I have to use the former computer just to download Julia packages using (Pkg.add “foo”) and the other offline computer to write and run codes for analysis. I am trying to find out how I can use packages in the offline environment.
(This development environment may sound strange, but this is the environment where I am required to work.)
The problem is, even though I copied all the packages from USER.julia\packages of the computer with the internet access to the same directory of the offline computer, an error message appears saying
Error ArgumentError: Package Plot not found in the current path.
when I run, for example, using Plots.
Does anybody know how I can solve this problem, i.e., move the installed packages from one computer to another offline computer and use it properly?
I am doubting that there might be a problem with the path settings on the offline computer, but I do not know how I can fix it.
Another idea would be to download package files from Github directly and move it to the offline computer, but I am not sure how to build them.
I know that it is easy to download and build libraries in R without facing the dependency hell, as done in the following link.
Thanks in advance.