我正在尝试使用matplotlib在Jupyter Notebook中绘图
import matplotlib.pyplot as plt
import numpy as np
array1 = np.random.rand(5)
array2 = np.random.rand(5)
plt.plot(array1, array2)
plt.show()
,我收到以下错误消息:
AttributeError: module 'matplotlib.colors' has no attribute 'to_rgba'
我搜索了该错误,并说我需要升级matplotlib版本。我尝试了几种方法来做到这一点。
sudo pip3 install --upgrade matplotlib
,
python3 -m pip install -U matplotlib
和
python -m pip install -U matplotlib
。
我总是收到以下错误:
ERROR: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-9ncad8jg/matplotlib/
为了解决我尝试过的错误,
pip3 install --upgrade setuptools
并尝试升级matplotlib,但我仍然遇到相同的错误。
我无法升级matplotlib,我仍然有1.5.1版本,我需要最新版本!