2017-03-08 1 views
1

현재 Python 2.7 인 Anaconda CDH 소포를 사용하고 있습니다. 파이썬 3.5로 업그레이드하고 싶습니다.Anaconda CDH Parcel을 3.5로 업그레이드하십시오.

나는이 명령을 사용하여 파이썬 버전을 업그레이드 할 수 있다고 말하는 자습서를 발견했습니다. conda install python=3.5. 그러나이 명령을 실행할 때 아래 오류가 발견되었습니다.

[[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

감사이 conda create -n py35 python=3.5을보십시오. 파이썬 3.5를 아나콘다에 설치할 수있는 방법이 있는지 물어볼 수 있습니까? 감사. @ 오사이 켄 –

관련 문제