Reputation: 441
I tried to install matplotlib
with: conda install matplotlib
, but got this error:
UnsatisfiableError: The following specifications were found to be in conflict: - matplotlib - python 3.6*
What do I supposed to deal with this issue? Thanks.
Upvotes: 3
Views: 8575
Reputation: 1008
I tried installing matplotlib using:
python -m pip install -U matplotlib
This is done under my current Anaconda virtual environment. Therefore, the pip I'm using corresponds to the python version in my virtual environment.
Upvotes: 0
Reputation: 56
Some dependencies are out of date i think.
Try this comman instead:
conda install -c conda-forge matplotlib=2.0.0
Upvotes: 4