Re: [julia-users] Package installation directory: dealing with multiple Julia version

2016-08-29 Thread Kevin Liu
Hi Tim, I changed my package directory on OSX to be in Google Drive, but *using* the package on the REPL calls it from the default location, /.julia/v0.4... How do I change *using* to call the package from Google Drive? Thanks, Kevin On Tuesday, September 30, 2014 at 7:14:41 AM UTC-3, Tim Holy

Re: [julia-users] Package installation directory: dealing with multiple Julia version

2014-09-30 Thread Giulio Valentino Dalla Riva
Wouldn't this also change the behavior of my Julia?

Re: [julia-users] Package installation directory: dealing with multiple Julia version

2014-09-30 Thread Tim Holy
On Tuesday, September 30, 2014 02:48:23 AM Giulio Valentino Dalla Riva wrote: Wouldn't this also change the behavior of my Julia? Not if you have different aliases, `myjulia` and `centraljulia`. You can define each one to do something different. --Tim

Re: [julia-users] Package installation directory: dealing with multiple Julia version

2014-09-30 Thread Giulio Valentino Dalla Riva
Gotcha! I'll try that now. Thanks!

Re: [julia-users] Package installation directory: dealing with multiple Julia version

2014-09-25 Thread Tim Holy
I do this by defining JULIA_PKGDIR to be the central repository, and then define an alias myjulia that starts up as JULIA_PKGDIR=/my/path julia --Tim On Wednesday, September 24, 2014 08:41:33 PM Giulio Valentino Dalla Riva wrote: The issue is concerned with Julia's packages install

[julia-users] Package installation directory: dealing with multiple Julia version

2014-09-24 Thread Giulio Valentino Dalla Riva
The issue is concerned with Julia's packages install directory. We successfully installed Julia on the department Linux server (central Julia) and I have a personal installation on a local area (my Julia). At the moment my install directory is ~/.julia/version/ for both mine and central Julia.