Python – There is no module called livelossplot

There is no module called livelossplot… here is a solution to the problem.

There is no module called livelossplot

I recently tried to make some live graphs for my ML models.
I’ve installed livelossplot:: with this command

pip install livelossplot

However, when trying to import a module in Jupyter, it returns the error:

ModuleNotFoundError: No module named 'livelossplot'

Please.
Can someone help me?

Solution

You can try this

pip installs livelossplot==0.1.2

Refer to the following link
https://pypi.org/project/livelossplot/0.1.2/

If it doesn’t work, then you can clone the repository below

https://github.com/stared/livelossplot

Related Problems and Solutions