On Tuesday, July 23, 2013 10:20:43 AM Douglas Bates wrote:
> is there a
> reasonable mechanism for sharing a package directory?
We do this in my lab.
.bashrc:
export JULIAFUNCDIR=~/julia/juliafunc # locally-written code
export JULIA_PKGDIR=/usr/local/julia/julia-packages
Everybody's .juliarc.jl:
push!(LOAD_PATH, ENV["JULIAFUNCDIR"])
using SOME_PACKAGE_I_ALWAYS_USE
--Tim