나는 우분투를 처음 사용하고 이틀 전에 Windows 7이 설치된 LENOVO hinkpad T410 시스템에 우분투 14.04 32 비트를 설치했지만 그 이후 우분투에서 python-3.4 패키지 (NUMPY, SCIPY)를 다운로드하고 설치하려고했지만 결과를 얻지 못했습니다. 우분투 소프트웨어 센터를 통해 유휴를 다운로드했지만 numpy는 우분투 소프트웨어 센터 또는 명령에서 실행되지 않습니다.
sudo apt-get install python-numpy
그것은 나에게 준다 :
E: Unable to locate package python-numpy_1.8.1-1ubuntu1_i386
E: Couldn't find any package by regex 'python-numpy_1.8.1-1ubuntu1_i386'
나는 또한 시도했다 :
pip install python-numpy
그러나 결과 :
Could not find any downloads that satisfy the requirement python-numpy
Cleaning up...
No distributions at all found for python-numpy
Storing debug log for failure in /home/sibte/.pip/pip.log
우분투 초보자를위한 모든 가이드.
답변
터미널에서 다음을 실행하십시오.
sudo apt-get install python3-numpy
이 패키지에는 Numpy for Python 3이 포함되어 있습니다. 예상대로 Ubuntu 14.04 용 Ubuntu Software Center에는 python3-scipy 라는 패키지도 있습니다 . python3-numpy 및 python3-scipy가 설치되어 있고 그래프 플로팅에 pylab을 사용하려는 경우 python3-matplotlib도 설치해야합니다 .
답변
pip
파이썬 3에 처음 설치 했습니다.
sudo apt-get install python3-pip
그리고 설치 numpy
와 함께 pip3
.
sudo pip3 install numpy
답변
이것도 실행될 수 있습니다.
sudo apt-get -y install python-numpy