Hi, I'm looking into it, but I have no idea. I've very bad experiences with julia packages, and this sounds just like that. It tries to install a few dependencies in your own ~/.julia/lib/v0.4 but fails. One thing you can try, is to export an env variable in your project's .bashrc and restart the project:
export JULIA_PKGDIR=~/.local/share/julia/site/ I've never tried that, though. My rationale is, that this should tell julia that all packages are stored there, and hence it is fully under its control (and obviously empty, so it will compile everything anew). You should probably also get rid of these partial installs in your ~/.julia/lib/v0.4 to let it start from scratch. What's the list of packages you would like to have? I can try to install them globally, but on guarantees. -- harald On Thu, Aug 4, 2016 at 10:37 AM, Peter Luschny <[email protected]> wrote: > Hi all, > > on SMC, in a jupyter notebook with Julia kernel: > > (IN) > Pkg.add("TaylorSeries") > using TaylorSeries > > (OUT) > INFO: Initializing package repository /projects/84186f14-a679-4dbe- > aa52-af1999e65179/.julia/v0.4 > INFO: Cloning METADATA from git://github.com/JuliaLang/METADATA.jl > INFO: Cloning cache of Compat from git://github.com/JuliaLang/ > Compat.jl.git > INFO: Cloning cache of FactCheck from git://github.com/JuliaLang/ > FactCheck.jl.git > INFO: Cloning cache of TaylorSeries from git://github.com/JuliaDiff/ > TaylorSeries.jl.git > INFO: Installing Compat v0.8.6 > INFO: Installing FactCheck v0.4.3 > INFO: Installing TaylorSeries v0.2.0 > INFO: Package database updated > INFO: Precompiling module TaylorSeries... > INFO: Recompiling stale cache file /projects/84186f14-a679-4dbe- > aa52-af1999e65179/.julia/lib/v0.4/Compat.ji for module Compat. > INFO: Recompiling stale cache file /projects/84186f14-a679-4dbe- > aa52-af1999e65179/.julia/lib/v0.4/TaylorSeries.ji for module TaylorSeries. > WARNING: Module Compat uuid did not match cache file > This is likely because module Compat does not support precompilation but > is imported by a module that does. > > LoadError: __precompile__(true) but require failed to create a precompiled > cache file > while loading In[2], in expression starting on line 2 in require at > ./loading.jl:268 > > What can I do? I am not even sure that it is SMC related. > > Thanks, Peter > > > -- > You received this message because you are subscribed to the Google Groups > "sage-cloud" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/sage-cloud/5e0f1d95-c2aa-4575-9437-5629e8a9a821%40googlegroups.com > <https://groups.google.com/d/msgid/sage-cloud/5e0f1d95-c2aa-4575-9437-5629e8a9a821%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "sage-cloud" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/sage-cloud/CAGG4CB5WQasU2Va%2BM6cPFCNoKBp_xcsJWv7R%2BG7eURzJN_d_gA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
