Ubuntu의 기본 Python은 2.7이므로 Python 패키지를 설치하면 py2 패키지가 설치됩니다.
利用alternatives
메커니즘은 py3를 기본값으로 변경합니다.
쉘에서 실행 :
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150
효과는 다음과 같습니다.
이때 명령 터미널에 설치 명령을 입력하면 py3를 지원하는 패키지가 자동으로 설치됩니다.
Numpy:
sudo apt-get install python-numpy
Scipy:
sudo apt-get install python-scipy
Matplotlib:
sudo apt-get install python-matplotlib
Pandas:
sudo apt-get install python-pandas
통계 모델링 분석 도구 statsModels:
sudo apt-get install python-statsmodels
기계 학습 라이브러리 scikit-learn:
sudo apt-get install python-sklearn
프롬프트에 따라 선택한 번호를 입력하고 Enter를 누르세요. py2에서 위 명령을 실행하면 py2에 해당하는 설치 패키지가 설치되고 시스템은 자동으로 이를 다운로드하도록 선택합니다.
위 내용은 Ubuntu16.04는 python3을 기본값으로 설정하고 일부 라이브러리를 설치합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!