我正在使用mac,当我尝试在IDLE上导入numpy时,它会显示:
File "/Users/muchen/Desktop/Pelt implementation/pymrfbp-1.12/examples/numpy/__init__.py", line 170, in <module>
raise ImportError(msg)
ImportError: Error importing numpy: you should not try to import numpy from
its source directory; please exit the numpy source tree, and relaunch
your python interpreter from there.
我知道这可能是一个重复的问题,因为之前有人问过这个问题,但我在Mac上找不到合适的解决方案。我希望有一个循序渐进的指南。另一个问题是我需要安装numpy吗?我刚刚下载并解压缩,但是如何在Mac上安装它?我还需要一步一步的指导。
答案 0 :(得分:0)
回答问题的第一部分是
you should not try to import numpy from
its source directory; please exit the numpy source tree, and relaunch
your python interpreter from there.
只需从其他任何位置启动口译员。例如,来自$HOME/myproject
文件夹。
安装numpy的最简单方法是使用pip
。只需输入终端
pip install numpy