JuliaPy / Conda.jl

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

what's the difference between Conda.ROOTENV and ENV["CONDA_JL_HOME"] #211

Closed AbhimanyuAryan closed 2 years ago

AbhimanyuAryan commented 2 years ago

I'm not able to understand the difference between Conda.ROOTENV and ENV["CONDA_JL_HOME]". I'm trying to install playwright and it said use Conda.pip_interop(true, env) before you install with Conda.pip

Currently, my setup says

julia> Conda.ROOTENV
"/Users/arstar/.julia/conda/3"

julia> ENV["CONDA_JL_HOME"]
"/Users/arstar/miniconda3/envs/conda_jl"

should I instead set

Conda.pip_interop(true, ENV["CONDA_JL_HOME"])

then

Conda.pip_interop(true, Conda.ROOTENV)

? I want my miniconda3 to handle all the packages and dependencies

AbhimanyuAryan commented 2 years ago

figured out