我的问题和这里的问题相同。
Module object has no attribute [CANTERA]
Ray Speth对此发表了评论,但该职位的OP一直没有回应,所以我希望Ray可以帮助我。
我安装了Cantera,并尝试做下面的事情
import cantera as ct
gas1 = ct.Solution('gri30.xml')
我得到了错误
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'Solution'
我按照评论的建议做了,得到了以下输出结果
print(ct.__file__)
/usr/local/lib/python2.7/site-packages/cantera/__init__.py
print(ct.__version__)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute '__version__'
答案 0 :(得分:0)