2017-03-08 120 views
1

我目前使用Python 2.7的Anaconda CDH parcel。我想將其升級到Python 3.5。Anaconda CDH Parcel將Python升級到3.5

我發現一些教程指出可以使用這個命令conda install python=3.5來升級Python版本。但是,運行此命令時發現了以下錯誤。

[[email protected] ~]# conda install python=3.5 
Fetching package metadata ...Could not connect to https://repo.continuum.io/pkgs/free/linux-64/ 
Could not connect to https://repo.continuum.io/pkgs/pro/linux-64/... 
Could not connect to https://repo.continuum.io/pkgs/free/noarch/ 
Could not connect to https://repo.continuum.io/pkgs/pro/noarch/... 
Solving package specifications: .... 

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

我想問問這是否與主機的網絡約束或包問題有關。

在此先感謝。

最好的問候, 拉赫蒂

回答

0

錯誤是說enum34不會與python3.5工作。 嘗試命令:

conda info enum34 
+0

謝謝您的回答。請問是否有任何方法可以在我的anaconda中安裝python 3.5?謝謝。 @oshaiken –