我正在尝试在python中,特别是在PyCharm IDE中使用matplotlib。我有Windows 10和Python 3.8,并检查了所有内容(例如pip)都是最新的。
我使用命令“ pip install matplotlib”通过pip安装了matplotlib,直到那时一切正常,因为我在cmd中没有收到任何错误,并且成功了。
当我尝试在PyCharm中将软件包安装到项目中时出现问题,并且出现错误。我在任何网站上都没有发现此错误,并且我尝试了很多事情,例如重新安装python和PyCharm,在conda环境中安装库,还尝试安装更新的FreeType,但我不知道该怎么做。
此外,我注意到在python.exe中导入matplotlib时出现任何错误,因此我认为该错误可能与PyCharm有关,但这只是一种推测。 这是错误:
src/checkdep_freetype2.c(5): fatal error C1189: #error: "FreeType version 2.3 or higher is required. You may set the MPLLOCALFREETYPE environment variable to 1 to let Matplotlib download it."
我不知道如何安装更新的FreeType版本或将MPLLOCALFREETYPE设置为1作为错误提示。
如果我可以提供更多信息或更多代码,请告诉我,我不知道我是否“正确”询问。
更新:
我也尝试在venv终端中编写命令,我想我也遇到同样的错误,但是更详细地讲,它提到了有关Microsoft Visual Studio的内容。这里的错误:
IC:\Program Files (x86)\Windows Kits\10\include\10.0.18362.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.18362.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.18
362.0\cppwinrt" /Tcsrc/checkdep_freetype2.c /Fobuild\temp.win32-3.8\Release\src/checkdep_freetype2.obj
checkdep_freetype2.c
src/checkdep_freetype2.c(5): fatal error C1189: #error: "FreeType version 2.3 or higher is required. You may set the MPLLOCALFREETYPE environment variable to 1 to let Matplotlib download
it."
error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.25.28610\\bin\\HostX86\\x86\\cl.exe' failed with exit status 2
----------------------------------------
Command "C:\Users\Samuel\PycharmProjects\untitled\venv\Scripts\python.exe -u -c "import setuptools, tokenize;__file__='C:\\temp\\pip-install-pzdo9qwp\\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:\temp\pip-record-059s14h2\install-record.txt --single-version-e
xternally-managed --compile --install-headers C:\Users\Samuel\PycharmProjects\untitled\venv\include\site\python3.8\matplotlib" failed with error code 1 in C:\temp\pip-install-pzdo9qwp\matplotl
ib\```
答案 0 :(得分:4)
尝试:
sudo apt-get install libfreetype6-dev
sudo apt-get install pkg-config
sudo apt-get install libpng12-dev
sudo apt-get install pkg-config
答案 1 :(得分:3)
Try updating your setuptools and pip to latest versions by clicking on the arrow up. Because I also updated pip through command prompt and it was not working. Has to do something with the PATH it is looking in. 在Windows 10上使用最新版本的PyCharm 2019.3.4 Professional和Python 3.8。
答案 2 :(得分:1)
我只下载了另一个版本的matplotlib就解决了这个问题。
python -m pip install -U matplotlib==3.2.0rc1```
答案 3 :(得分:1)
答案 4 :(得分:0)
我假设您只是进入命令提示符并输入“ pip install matplotlib”。这只会为您安装的环境安装matplotlib,但是pycharm会创建自己的环境。
因此,要安装matplotlib,请转到pycharm中的文件资源管理器,然后右键单击“ venv”。然后单击在终端中打开。终端打开后,您可以使用pip安装matplotlib,然后一切正常。
答案 5 :(得分:0)
这偶尔发生在我身上。当PyCharm显示它已安装在解释器中但仍然给出导入错误时,我只是创建一个新项目,并且它导入时没有错误。
答案 6 :(得分:0)
我以管理员身份打开Pycharm,因此您可以使用命令并轻松更新所有内容。我还输入了终端:
pip -m install matplotlib
可以解决依赖关系,并且有效。 还要检查设置->项目解释器并更新每个可以的软件包,它对我有用,顺便说一句,我使用的是python 3.8,一点问题都没有。
答案 7 :(得分:0)
就我而言,我卸载了pycharm并重新安装并升级到了最新版本。我尝试了上述所有解决方案,但都没有解决问题。问题解决了,我运行了我的代码。