我是Linux新手并尝试使用Python 3.6
安装Anaconda
,并提供说明hide
。
当我运行conda install python==3.6
时,我得到以下内容:
Solving environment: failed
UnsatisfiableError: The following specifications were found to be in conflict:
- jupyter_contrib_nbextensions -> jupyter_nbextensions_configurator[version='>=0.2.8'] -> python=3.5
- python==3.6
Use "conda info <package>" to see the dependencies for each package.
如何修复此错误?我已经有了Python 3.5,我想升级到3.6。
答案 0 :(得分:0)
这似乎与另一个问题相似(如果您正在尝试更新已安装的anaconda版本)
一种选择是使用
更新anacondaconda update --all
有关详情,请参阅:How do I update Anaconda?
此外,如果您正在输入
conda install python==$pythonversion$
应该是
conda install python==3.6
如果您要使用Python 3.6(只是检查)