Re: [julia-users] Multiple JULIA_PKGDIR directories in a hierarchy for supporting a shared environment

2016-06-27 Thread Tom Breloff
Well presumably it could do something that the import logic already does, but I appreciate that it is complex logic. David: @wildart is the person to follow for the future of package management. On Mon, Jun 27, 2016 at 2:02 PM, Stefan Karpinski wrote: > You can use LOAD_PATH to look in a stack

Re: [julia-users] Multiple JULIA_PKGDIR directories in a hierarchy for supporting a shared environment

2016-06-27 Thread Stefan Karpinski
You can use LOAD_PATH to look in a stack of directories, and you can even set ENV["JULIA_PKGDIR"] to change which one Pkg manages, but you cannot manage more than one of them at the same time, since it's unclear what this would even do. On Mon, Jun 27, 2016 at 1:28 PM, David Parks wrote: > I wan

[julia-users] Multiple JULIA_PKGDIR directories in a hierarchy for supporting a shared environment

2016-06-27 Thread David Parks
I want to set up a specific Julia environment on a cluster for other people to use. I have particular packages, including some that are dev branches, and even some that draw from my own fork of a branch to support a custom feature for this environment. So the package setup is non trivial and I