Skip to content Skip to sidebar Skip to footer

Attributeerror: Module Matplotlib Has No Attribute _tri

I am trying to use Matplotlib in my conda environment (Python 3.6) I am getting this error. Does anyone have an idea how to fix this? import matplotlib.pyplot as plt -------------

Solution 1:

I feel like you have mismatched binaries, unfortunately, I can't reproduce your error because mine works.

(1): Perhaps try to uninstall matplotlib and then re-install it again

conda uninstall matplotlib

conda install matplotlib

(2) try the output conda list and conda info then analyze it or post it here maybe so we can analyze it?

(3) Try the following commands maybe they will work:

conda update--all

(4) if this doesn't work uninstall Anaconda maybe and try to reinstall the latest version of it.

Post a Comment for "Attributeerror: Module Matplotlib Has No Attribute _tri"