我想在 Virtualenv 环境中安装 python-numpy。我的系统是 Ubuntu 12.04,我的 python 是 2.7.5。首先我安装了 Virtualenv
$ sudo apt-get install python-virtualenv
然后通过以下方式设置环境
$ mkdir myproject
$ cd myproject
$ virtualenv venv
New python executable in venv/bin/python
Installing distribute............done.
通过激活它
$ . venv/bin/activate
通过在环境中安装 python-numpy
$ sudo apt-get install python-numpy
但是,经过上述所有步骤后,我尝试在环境中的 python 中导入 numpy。Python 告诉我“没有名为 numpy 的模块”。而 numpy 可以在 Python 中全局导入。我尝试删除和安装很多次,但它不起作用。我是 Python 和 Linux 的初学者。