一,freetype
错误如下:
freetype: no [The C/C++ header for freetype2 (ft2build.h) could not be found. You may need to install the development package.]
解决方法:
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.6.1.tar.bz2
tar -xjvf freetype-2.6.1.tar.bz2
cd freetype-2.6.1/
./configure --prefix=/usr/local
sudo make install
二,png
错误如下:
png: no [pkg-config information for 'libpng' could not be found.]
在
官方网站
下载libpng.
tar -zxvf libpng-1.6.18.tar.gz
cd libpng-1.6.18/
./configure --prefix=/usr/local
sudo make install
三,zlib
错误如下:
configure: error: zlib not installed
在
官方网站
下载zlib.
tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8/
./configure --prefix=/usr/local
sudo make install
四,python-dev
错误如下:
SystemError: Cannot compile 'Python.h'. Perhaps you need to install python-dev|python-devel.
解决方法,通过提示安装python-dev
一,freetype错误如下:freetype: no [The C/C++ header for freetype2 (ft2build.h) could not be found. You may need to install the development package.]解决方法:wget http://download.savannah.gnu.org/re
.提示缺少 png 和
freetype
依赖库
freetype
: no [The C/C++ header for
freetype
2 (ft2build.h)
could not be found. You may need to install the
development package.]
首先,本人只
安装
了标准版Python,在
安装
matplotlib
时,
遇到
没有
freetype
和png的错误提示,经各种查找,最终在Stack Overflow上找到解决方法
http://stackoverflow.com/a/24534246/7561181
PROBLEMCentOS 7下
安装
matplotlib
。pip install
matplotlib
报错如下:[root@localhost Desktop]# pip install
matplotlib
Collecting
matplotlib
Using cached
matplotlib
-1.5.1.tar.gz
Complete output from command p
本人电脑配置的是Anconda环境+pycharm2017.2.2 comuniity,每次
安装
什么包就是直接pip install 的,但是这次在
安装
freetype
的
安装
中却
遇到
了麻烦。
具体是在pycharm中自动下载
freetype
成功后,却加载不成功,一直提示找不到该module.
具体解决方法如下:
首先去你的anconda下输入 pip install
freetype
-py...