所以我最近尝试使用sudo pip install scipy
在我的Raspbian(Debian for Raspberry Pi)操作系统上安装scipy。该命令工作没有太大麻烦,我可以看到该文件位于pi/build/scipy
。
但是,当我实际尝试在python程序中导入它时,它会给我ImportError: No module named scipy
我不确定如何将操作系统指向正确的位置以导入scipy模块。
答案 0 :(得分:6)
除非你在pip环境中,否则根本不会工作。我建议您安装python-scipy
软件包,以确保您可以使用:
➜ ~ sudo apt-get install python-scipy
Selecting previously unselected package python-decorator.
(Reading database ... 252269 files and directories currently installed.)
Preparing to unpack .../python-decorator_3.4.0-2_all.deb ...
Unpacking python-decorator (3.4.0-2) ...
Selecting previously unselected package python-scipy.
Preparing to unpack .../python-scipy_0.13.3-2+b1_i386.deb ...
Unpacking python-scipy (0.13.3-2+b1) ...
Setting up python-decorator (3.4.0-2) ...
Setting up python-scipy (0.13.3-2+b1) ...
➜ ~ python
Python 2.7.7 (default, Jun 3 2014, 23:36:29)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import scipy
>>>
答案 1 :(得分:-2)
我认为使用sudo pip
安装后,您的权限存在问题。 (
这个问题的快速解决方案可能是使用
安装scipysudo -i
pip install scipy
要使sudo
- 安装有效,您可能需要更改默认umask
(umask 0022
)。