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
Add a freeze=true argument to activate! (or something like this) to freeze the environment until it is deactivated.
The effect of this is that resolve will refuse to uninstall or modify any already-installed packages - i.e. you can only add new packages, and in this case we use the conda install --freeze-deps, only passing the extra packages to conda install and pip install.
This will let the user safely add new packages even if PythonCall is already running, and prevents disrupting anything already there (which might already be depended upon).
Could even add a --fast flag to resolve which uses this scheme anyway (if possible).
The text was updated successfully, but these errors were encountered:
Add a
freeze=true
argument toactivate!
(or something like this) to freeze the environment until it is deactivated.The effect of this is that
resolve
will refuse to uninstall or modify any already-installed packages - i.e. you can only add new packages, and in this case we use theconda install --freeze-deps
, only passing the extra packages toconda install
andpip install
.This will let the user safely add new packages even if PythonCall is already running, and prevents disrupting anything already there (which might already be depended upon).
Could even add a
--fast
flag toresolve
which uses this scheme anyway (if possible).The text was updated successfully, but these errors were encountered: