在 conda 中将 python 从 3.5 更新到 3.6
Update python from 3.5 to 3.6 in conda
我想将我的 python 版本从 3.5 升级到 3.6 以使用新功能。
我首先使用 、
将基本环境复制为 base3.6
然后我想使用 conda install python=3.6
将 python3.5 升级到 3.6,但是我有这个错误
(base3.6) D:\Desktop\GOC-VRPTW-master>conda install python=3.6
Solving environment: failed
UnsatisfiableError: The following specifications were found to be in conflict:
- defaults/win-64::psutil==4.3.1=py35_0 -> python=3.5 -> python_abi=[build=*_cp35m] -> pypy[version='<0a0']
- python=3.6
Use "conda info <package>" to see the dependencies for each package.
类似的问题,但细节不同
我觉得重新安装一个新环境是更好的选择
我想将我的 python 版本从 3.5 升级到 3.6 以使用新功能。
我首先使用
然后我想使用 conda install python=3.6
将 python3.5 升级到 3.6,但是我有这个错误
(base3.6) D:\Desktop\GOC-VRPTW-master>conda install python=3.6
Solving environment: failed
UnsatisfiableError: The following specifications were found to be in conflict:
- defaults/win-64::psutil==4.3.1=py35_0 -> python=3.5 -> python_abi=[build=*_cp35m] -> pypy[version='<0a0']
- python=3.6
Use "conda info <package>" to see the dependencies for each package.
类似的问题,但细节不同
我觉得重新安装一个新环境是更好的选择