“Plotly”无法在 Jupyter 中导入

问题描述 投票:0回答:1

我尝试在 jupter 中导入“plotly”,但弹出了以下错误消息。不确定是否有人可以帮忙?非常感谢!

enter image description here

我尝试导入库但不成功。

plotly
1个回答
0
投票

您可能将

plotly
安装在不同的环境中,而不是
jupyter
使用的环境。我发现这篇文章在安装模块时很有用
jupyter
https://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/

特别是,我通常在 jupyter 内部使用这种方法:

import sys
!{sys.executable} -m pip install plotly
© www.soinside.com 2019 - 2024. All rights reserved.