JuliaPy / Conda.jl

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

fix "Using a pre-existing Conda installation" #158

Closed moskvo closed 5 years ago

moskvo commented 5 years ago

On Windows i change this:

export CONDA_JL_HOME="/path/to/miniconda/envs/conda_jl" julia -e 'Pkg.build("Conda")'

to this:

set CONDA_JL_HOME=/path/to/miniconda/envs/conda_jl julia -e 'Pkg.build("Conda")' But last command doesn't work. So after set CONDA_JL_HOME i launch julia, go to pkg mode ("]") and run "build Conda".

Basically i didn't want to create a new env but change Conda.jl to my base env so i make "set CONDA_JL_HOME=C:\Users\%myuser%\Miniconda3"

stevengj commented 5 years ago

Thanks, I updated the example to run all of the commands in Julia.