以下是我执行的操作顺序:
在版本17上是 由于我在安装许多库时遇到问题,因此想恢复为旧版本。因此,尝试使用以下命令还原为旧版本。
conda install --revision 10
这时我收到以下错误
PackagesNotFoundError: The following packages are missing from the target environment
- conda-forge::conda==4.5.10=py36_0'
然后我尝试添加频道,以便使用以下命令找到包
conda config --add channels conda-forge
添加频道后,我能够成功回滚到旧版本。
下一步,我尝试安装新的库
conda install -c conda-forge fuzzywuzzy
现在我遇到以下错误。
CondaUpgradeError: This environment has previously been operated on by a conda
version that's newer than the conda currently being used. A newer version of conda is required.
target environment location: C:\Users\XXXXX\Anaconda3
current conda version: 4.5.11
minimum conda version: 4.6
我尝试了以下操作,但无法解决当前问题
conda update conda
conda update -n root conda
我仍然得到相同的CondaUpgradeError
。
有人可以帮忙解决此问题吗?