安装matplotlib时出错。我该怎么办?

2024-09-30 22:14:13 发布

您现在位置:Python中文网/ 问答频道 /正文

安装matplotlib时出错。我该怎么办

ERROR: Command errored out with exit status 1: 'c:\python\python38-32\python.exe' -u -c 'import sys, setuptools, tokenize;
 sys.argv[0] = '"'"'C:\\Users\\jains\\AppData\\Local\\Temp\\pip-install-t4qri_bp\\matplotlib\\setup.py'"'"';
 __file__='"'"'C:\\Users\\jains\\AppData\\Local\\Temp\\pip-install-t4qri_bp\\matplotlib\\setup.py'"'"';
f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');
f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\jains\AppData\Local\Temp\pip-record-5_2e7bsk\install-record.txt' --single-version-externally-managed --compile Check the logs for full command output.

Tags: installpipmatplotliblocalsyssetuprecordusers
1条回答
网友
1楼 · 发布于 2024-09-30 22:14:13

最新版本的matploitlib支持Python 3.7,但这个版本在Python 3.8中也适用于我

python -m pip install -U matplotlib==3.2.0rc1

相关问题 更多 >