1

I am using python 3.7, windows OS.I successfully installed matplotlib using pip install matplotlib It worked fine if commands run from command prompt but shows the error ModuleNotFoundError: No module named 'matplotlib' if I run it from my regular IDLE. every suggestion is appreciated .....

1 Answer 1

2

1st check on which environment you're running you scripts

conda info --envs

it will give you your active environment, and run

pip list 

will give you all active packages installed.

even if that doesn't help than create new environment

conda create --name myenv python=3.6
conda activate myenv

and install matplotlib again

pip install matplotlib
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.