【python】ubuntu系统安装matplotlib库遇到报错 failed with error code 1 in /tmp/pip-build-fvuvi9m6/pillow/

今天在ubuntu系统下conda安装matplotlib库遇到了下面的报错:
【python】ubuntu系统安装matplotlib库遇到报错 failed with error code 1 in /tmp/pip-build-fvuvi9m6/pillow/_第1张图片
第一反应是pip有问题,于是执行pip install --upgrade pip,遇到了下面的问题:

【python】ubuntu系统安装matplotlib库遇到报错 failed with error code 1 in /tmp/pip-build-fvuvi9m6/pillow/_第2张图片
看起来pip已经是目前支持的最新版本了,那么会是什么问题呢?

于是进入/home/leo/anaconda3/envs/tf180/lib/python3.6/site-packages路径,发现有两个版本的pip-xxx.dist-info文件夹,删掉pip-21.3.1.dist-info,再次执行pip install --upgrade pip,更新成功。

再次执行pip install matplotlib,安装成功。

【python】ubuntu系统安装matplotlib库遇到报错 failed with error code 1 in /tmp/pip-build-fvuvi9m6/pillow/_第3张图片

你可能感兴趣的:(python,ubuntu,matplotlib)