导入错误:MacOS 上没有名为"pystan"的模块



我使用pip install pystan在python虚拟环境中安装了pystan。我检查了这个模块是用pip freeze列出来的。但当我用import pystan运行代码时。它给出了没有找到模块的错误。

下面的是PIP freeze命令的输出。它显示了pystan版本3.3.0

aiohttp==3.7.4.post0
appdirs==1.4.4
async-timeout==3.0.1
attrs==21.2.0
chardet==4.0.0
clikit==0.6.2
crashtest==0.3.1
httpstan==4.6.0
idna==3.2
lz4==3.1.3
marshmallow==3.13.0
multidict==5.2.0
numpy==1.21.2
pandas==1.3.3
pastel==0.2.1
pylev==1.4.0
pysimdjson==3.2.0
pystan==3.3.0
python-dateutil==2.8.2
pytz==2021.3
six==1.16.0
typing-extensions==3.10.0.2
webargs==8.0.1
yarl==1.7.0

然而,当我试图从控制台导入模块时,它会抛出以下错误:

import pystan
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "/Applications/PyCharm CE.app/Contents/plugins/python-ce/helpers/pydev/_pydev_bundle/pydev_import_hook.py", line 21, in do_import
module = self._system_import(name, *args, **kwargs)
ModuleNotFoundError: No module named 'pystan'

导入列表中的任何其他模块都不会抛出错误。

我在这个链接找到了解决方案

显然pystan的最新版本(祝辞= 3)使用斯坦pystan的import语句,而在早期版本中是只是pystan。

如果你安装了pystan (>=3)使用import stan代替import pystan

相关内容

  • 没有找到相关文章

最新更新