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
According to the conda docs, we should be able to use this option to prevent already-installed packages from changing. We could use this in Deps.add() to guarantee consistent state.
However, the option doesn't seem to work! In a fresh environment, doing conda install python then conda install --freeze-installed numpy installs Python 3.10 then downgrades it to Python 3.9!
The text was updated successfully, but these errors were encountered:
According to the conda docs, we should be able to use this option to prevent already-installed packages from changing. We could use this in Deps.add() to guarantee consistent state.
However, the option doesn't seem to work! In a fresh environment, doing
conda install python
thenconda install --freeze-installed numpy
installs Python 3.10 then downgrades it to Python 3.9!The text was updated successfully, but these errors were encountered: