繁体   English   中英

蟒蛇安装Python 3.7失败

[英]Python 3.7 install fails with anaconda

我尝试使用以下命令为anaconda安装python 3.7:

conda install -c anaconda python=3.7

其显示以下失败消息:

Solving environment: failed

UnsatisfiableError: The following specifications were found to be in conflict:
  - _license -> python=3.6
  - python=3.7
Use "conda info <package>" to see the dependencies for each package.

以下页面提供了一种解决方案: https : //github.com/ContinuumIO/anaconda-issues/issues/9686

并可以通过使用以下命令创建新的虚拟环境来解决该问题,而无需使用默认软件包:

conda create -n python37 python=3.7 --no-default-packages

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM