You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conda.bin_dir(:uniref) gives "/Users/jakobnissen/miniconda3/envs/uniref/envs/uniref/bin" - note the envs/uniref is duplicated.
This probably comes from the fact that ROOTENV is "/Users/jakobnissen/miniconda3/envs/uniref", and bin_dir is defined by joining prefix with bin, and prefix is defined as joining ROOTENV with envs/uniref.
And I think that ultimately comes from the README.md saying that you can use an existing environment by doing: ENV["CONDA_JL_HOME"] = "/Users/jakobnissen/miniconda3/envs/my_env", when in fact you should be omitting the envs/my_env at the end.
The text was updated successfully, but these errors were encountered:
Conda.bin_dir(:uniref)
gives"/Users/jakobnissen/miniconda3/envs/uniref/envs/uniref/bin"
- note theenvs/uniref
is duplicated.This probably comes from the fact that ROOTENV is
"/Users/jakobnissen/miniconda3/envs/uniref"
, andbin_dir
is defined by joiningprefix
withbin
, andprefix
is defined as joining ROOTENV withenvs/uniref
.And I think that ultimately comes from the README.md saying that you can use an existing environment by doing:
ENV["CONDA_JL_HOME"] = "/Users/jakobnissen/miniconda3/envs/my_env"
, when in fact you should be omitting theenvs/my_env
at the end.The text was updated successfully, but these errors were encountered: