Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Live_plotter module #7

Open
aravindSwamy94 opened this issue Apr 28, 2020 · 2 comments
Open

Live_plotter module #7

aravindSwamy94 opened this issue Apr 28, 2020 · 2 comments

Comments

@aravindSwamy94
Copy link

Hi,

The project requires the live_plotter module.

Im getting an import error "ImportError: No module named 'live_plotter'"

Could you please help me solve this

@qiaoxu123
Copy link
Owner

The problem probably is that you have a newer matplotlip version where the tkagg package was removed, because it is deprecated. Thats the case when your matplotlib version is greater than 3.1. The script should definitely be update.

I solved the problem by removing the current matplotlib version and installing the 3.1.0 version like this:

pip uninstall matplotlib && pip install matplotlib==3.1.0

You can check your version like this:

import matplotlib

matplotlib.__version__

@olyii
Copy link

olyii commented Dec 7, 2022

The problem probably is that you have a newer matplotlip version where the tkagg package was removed, because it is deprecated. Thats the case when your matplotlib version is greater than 3.1. The script should definitely be update.

I solved the problem by removing the current matplotlib version and installing the 3.1.0 version like this:

pip uninstall matplotlib && pip install matplotlib==3.1.0

You can check your version like this:

import matplotlib

matplotlib.__version__

doesn't work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants