python - I installed latest matplotlib version 1.5 from source, but version 1.3.1 is still working as a default one. -
so explained situation above. on ubuntu installed latest matplotlib version 1.5 source dependencies , eclipse seems draw plots fine, version 1.3.1 of matplotlib still working default one.
>> print (matplotlib.__version__) 1.3.1
i need use styles matplotlib comes 1.4.x version. how can make matplotlib version 1.5 default python3? thanks.
first try remove matplotlib
device.
this can achieved using:
if have installed via apt
sudo apt-get remove python-matplotlib
if have installed via pip
sudo pip uninstall matplotlib
after have uninstalled completely, try install matplotlib 1.5
, should work. somehow previous version (i.e. 1.3.1
) being taken default version after installing 1.5.1
Comments
Post a Comment