numpy 가져오기 오류 - ImportError: mtrand라는 모듈이 없습니다.

numpy 가져오기 오류 - ImportError: mtrand라는 모듈이 없습니다.

소스에서 컴파일 numpy-1.11.2하고 다음과 같이 설치했습니다. python setup.py install

Python에서 가져오려고 하면 다음 오류가 발생합니다.

python
Python 2.7.10 (default, Mar 14 2016, 14:17:09)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/site-packages/numpy-1.11.2-py2.7-linux-x86_64.egg/numpy/__init__.py", line 163, in <module>
    from . import random
  File "/usr/local/lib/python2.7/site-packages/numpy-1.11.2-py2.7-linux-x86_64.egg/numpy/random/__init__.py", line 99, in <module>
    from mtrand import *
ImportError: No module named mtrand

여기에 문제가 있나요?

답변1

Python이 numpy 설치를 찾을 수 없습니다. apt-get install python-numpy를 시도해 볼 수 있습니까?

관련 정보