JuliaPy / Conda.jl

Conda managing Julia binary dependencies
Other
173 stars 57 forks source link

add BINDIR to PATH environment #120

Closed alkorang closed 5 years ago

alkorang commented 5 years ago

fix #119

stevengj commented 5 years ago

We shouldn't be globally modifying the environment, and doing it at the top level in Conda.jl won't work anyway (it will modify ENV at precompile time, not at runtime).

alkorang commented 5 years ago

You're right. This does not work with precompiled Conda.jl.

I've just found that when I use Python 3.6 for Miniconda base env instead of 3.7, it works fine. I'll search for the reason why this happens from 3.7 version.