python 2.7 中的 Cantera 问题
Posted
技术标签:
【中文标题】python 2.7 中的 Cantera 问题【英文标题】:Cantera problems in python 2.7 【发布时间】:2018-03-08 08:13:54 【问题描述】:我尝试在 Spyder 中启动一个程序。 我需要开始的是:
from Cantera import *
from Cantera.Reactor import *
from Cantera.Func import *
from Cantera import rxnpath
我得到的是:
ImportError: No module named Cantera
到目前为止,我尝试的是: 首先,我读到安装 Anaconda 以启动 Cantera 应该很容易,所以我下载它并开始使用
chmod +x ~/Downloads/Anaconda*.sh
~/Downloads/Anaconda*.sh
bash
conda update conda
conda install conda-build
conda update conda-build
conda install -c anaconda anaconda-navigator
conda create -n uni3.18 -c cantera cantera python=2.7 ipython matplotlib anaconda scipy
source activate uni3.18
到目前为止,我已经按照他们所说的做了http://www.cantera.org/docs/sphinx/html/install.html#id3
之后我启动 anaconda-navigator,看到我的应用程序在 uni3.18 上并启动 Spyder。启动程序,但它不起作用。
我尝试了其他一些命令,例如
conda install -c cantera/label/dev cantera
或单独与
conda install -c cantera cantera
但最后我没有让它运行。通过 conda 安装 Cantera 后如何导入?
【问题讨论】:
【参考方案1】:这里是 Cantera 开发人员。原因是Cantera接口是用小写c导入的
import cantera
不是大写的C。
【讨论】:
以上是关于python 2.7 中的 Cantera 问题的主要内容,如果未能解决你的问题,请参考以下文章