我对Linux和Python都很陌生。我在做一个Ubuntu 16.04。
我最初的Python是
python --version Python 2.7.8
我试图将numpy导入到python3中。但是,当我试图导入numpy时,我会得到以下错误
回溯(最近一次调用): 文件"/usr/local/lib/python2.7/dist-packages/numpy/core/init.py",第16行,in from。导入多数组ImportError: /usr/local/lib/python2.7/dist-packages/numpy/core/multiarray.so:未定义符号:_Py_ZeroStruct在处理上述异常时,发生了另一个异常: 回溯(最近一次调用):File "",第1行,在File "/usr/local/lib/python2.7/dist-packages/numpy/init.py",第142行,in from。导入"/usr/local/lib/python2.7/dist-packages/numpy/add_newdocs.py",文件第13行,从numpy.lib导入add_newdoc文件第8行,从.type_check导入*文件"/usr/local/lib/python2.7/dist-packages/numpy/lib/type_check.py",第11行,在导入numpy.core.numeric作为_nx文件的第26行中,在_nx ImportError(msg) ImportError:导入多数组numpy扩展模块失败。 很可能您正在尝试导入失败的numpy构建。如果您正在使用numpy git,请尝试使用git干净的-xdf (删除所有不在版本控制下的文件)。否则重新安装numpy。最初的错误是: /usr/local/lib/python2.7/dist-packages/numpy/core/multiarray.so:未定义符号:_Py_ZeroStruct“
我用来导入numpy的python是Python3.5.2,它似乎试图使用Python2.7中的包。
我试过:
sudo apt-get update
sudo apt-get install python3-pip
sudo apt-get install python3-numpy
还包括:
sudo python3 -m pip uninstall pip && sudo apt install python3-pip --reinstall
sudo apt install python3-numpy python3-scipy
这似乎是一个与其他人所面临的问题相似的问题,但似乎没有一个解决办法有效。
发布于 2019-03-08 03:27:08
您为python2.7和python3安装了pip。要使用python3的pip,只需使用pip3而不是pip。
pip3 install package
https://stackoverflow.com/questions/55061870
复制相似问题