0

我尝试在我的新笔记本电脑上从 Ubuntu 过渡到 Linux Mint。由于我目前正在使用 QuTiP 进行模拟的项目,我希望它也可以在 Linux Mint 上运行。我遵循了 qutip 页面http://qutip.org/docs/3.1.0/installation.html#installation-on-ubuntu-linux的安装路线,就 ubuntu 而言,它就像一个魅力。但对于 Mint,它不起作用。我收到以下错误消息,我在这里搜索但没有得到合理的结果。

ImportError: Building module qutip.cy.spmatfuncs failed: ["CompileError: >command 'x86_64-linux-gnu-gcc' failed with exit status 1\n"]

我不确定该怎么做,因为我肯定安装了 gcc,安装了 intel i7 和 linux 的 x86 架构:)。

如果有人面临同样的问题或知道如何解决问题,我将不胜感激。

问候

编辑:

正如第一条评论所建议的那样,我现在对我安装的 python 有点不确定。包装说明如下

将安装以下软件包:libpython2.7-stdlib:i386、libjack0、libutempter0、libpython-stdlib:i386、xterm、libpython2.7-minimal:i386

(这是安装的包)

但是我有一个 64 位系统,所以我不明白为什么它默认安装在 Linux Mint 17.3 系统上。我也在犹豫,因为其他人警告我要弄乱现有的 python 安装。

4

1 回答 1

0

从这里下载 Anaconda: https ://www.anaconda.com/download/

在您下载安装文件的文件夹中打开 bash 并写入:

bash  installfile.sh

打开终端并写入:

conda config --append channels conda-forge

点击进入。

conda update conda

点击进入。

conda config --add channels conda-forge

点击进入。

conda install qutip

点击进入。准备好了!

于 2018-11-22T12:30:34.797 回答