没有名为livelossplot的模块

时间:2018-09-17 13:00:31

标签: python pip

我最近尝试为我的Ml模型制作一些实时图。 我已经通过以下命令安装了livelossplot:

pip install livelossplot

但是,当尝试在Jupyter中导入模块时,它返回错误:

ModuleNotFoundError: No module named 'livelossplot'

请 有人可以帮我吗?

2 个答案:

答案 0 :(得分:1)

您可以尝试

点安装livelossplot == 0.1.2

请参考以下链接 https://pypi.org/project/livelossplot/0.1.2/

如果它不起作用,则可以克隆以下存储库

https://github.com/stared/livelossplot

答案 1 :(得分:0)

解决此问题的方法有几种,一种方法是启动anaconda-navigator

enter image description here

  

在(基本)根环境中单击鼠标左键,然后选择在终端中打开

然后键入

pip install livelossplot

另一种方法是,如果在Linux中的PATH变量或WINDOWS中的环境变量中添加了anaconda路径,则可以登录环境

喜欢

albin@computer:~$ source activate
(base) albin@computer:~$ pip install livelossplot

如果尚未添加到PATH或环境变量,则可以通过指定完整路径(例如

)登录到环境
albin@computer:~$ source anaconda3/bin/activate 
(base) albin@computer:~$ pip install livelossplot