1

我已经尝试了很多方法来让 scipy 与 python3.2 一起玩,但还没有乐趣。

我试过了:

  sudo apt-get build-dep scipy

没有快乐

    sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose

仍然没有快乐

目标是让 scipy 与运行 python3.2 的 ipython 配合使用。

这是终端输出。 http://pastebin.com/LkPZUSAX

帮助/帮助表示赞赏。

4

2 回答 2

1

尝试:

sudo apt-get install python32-numpy 

如果您的系统上安装了多个版本的 python,那么您必须指定要为其安装库的版本。

你也可以

python --version 

检查系统的默认 python

于 2013-06-03T13:06:19.720 回答
0

尝试运行命令

sudo apt-get install python3.2-numpy 

反而。

运行命令

sudo apt-get install python-numpy 

在我的情况下,安装 python2.7 是默认的。

所以必须在 apt-get 命令中指定 python 版本。

于 2014-04-11T11:41:21.000 回答