2017-04-26 124 views
1

我试图通过conda install python=3.3降级水蟒蟒版本,但有如下错误:与包畅达安装降级Python版本

~/anaconda3/bin$ ./conda install python=3.3 
Fetching package metadata ......... 
Solving package specifications: . 


UnsatisfiableError: The following specifications were found to be in conflict: 
    - gevent -> python 2.6* 
    - python 3.3* 
Use "conda info <package>" to see the dependencies for each package. 

如何化解矛盾?

回答

1

您可以用环境使用此命令的Python的其他版本:

conda create --name py33 python=3.3 
source activate py33 
+1

但是,我并不需要的环境,我需要的Python 3.3的默认Python安装。 – mrgloom

+1

使用环境是使用不同版本的Python的支持方式。您也可以使用不同的Python版本卸载并重新安装Anaconda。 –

+0

通过'.sh'文件分发的二进制文件只有Python 3.4。 https://repo.continuum.io/archive/ – mrgloom