导入错误:无法导入名称“logsumexp”来自“scipy.misc” (C:\Users\firstname.lastname\Anaconda3\lib\site-packages\scipy\misc\__init__.py)
我正在尝试使用 python 3 在 anaconda env 下使用 jupyter 笔记本导入 hmm 。 我尝试使用以下命令更新软件包,
pip install scikit-learn --upgrade
pip install scipy --upgrade
pip install sklearn --upgrade
但仍然遇到相同的错误。
I'm trying to import hmm
with jupyter notebook under anaconda env with python 3.
I tried to update the packages with the following commands,
pip install scikit-learn --upgrade
pip install scipy --upgrade
pip install sklearn --upgrade
But still I'm getting the same error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此操作
from scipy.special import logsumexp
do this
from scipy.special import logsumexp