Takafumi Arakaki
Takafumi Arakaki
If you have Julia 1.4 or above, it looks like you can set the environment variable `export JULIA_PKG_SERVER=pkg.julialang.org` (in your system shell) to work around this issue https://github.com/JuliaLang/julia/issues/33111#issuecomment-612638509
The output of `julia --startup-file=no ~/.local/lib/python3.8/site-packages/julia/juliainfo.jl` might be helpful.
> So this does not look like a pyjulia issue but more like a packaging issue Well, PyJulia should at least throw a better error! (I wonder why `CalledProcessError` does...
Your code looks totally fine. It's hard to tell what is going on. You can start troubleshooting by: * Run `julia.install()`; sharing the full output can help. * Run `julia.Julia(debug=True)`...
> With `julia.install(quiet=True)`: Sorry, I meant `julia.install()`; I don't know why I put `quiet=True` there... Did you use Ctrl-C in REPL? It is known to crash Python: https://pyjulia.readthedocs.io/en/latest/limitations.html#ctrl-c-does-not-work-terminates-the-whole-python-process Or, do...
Yes, it's a bug.
Maybe it's better to not switch only from "unknown" backend (e.g., nbagg)? ```julia if haskey(matplotlib, :pyplot) # If matplotlib.pyplot exists, it means that matplotlib # backend is already configured. It...
Thanks for the PR! Is `CONDA_EXE` documented somewhere? It looks like https://github.com/conda/conda/issues/6810 is the only source (except the code)?
Continuing https://github.com/JuliaPy/Conda.jl/pull/146#discussion_r259231054. Good to know. Thanks for clarification. I just had a look at Conda.jl to refresh my memory and I noticed a few things: First of all, if `ENV["CONDA_JL_HOME"]`...
Having multiple installations of conda actually defeats the purpose of conda; handle multiple environment, centralize resources like download cache, de-duplicate files as much as possible, etc. I sympathise with you...