ubuntu下安装pillow失败

ubuntu下安装pillow失败

ubuntu 16.04下
运行命令

pip install pillow

然后失败了:

解决办法,先安装:

sudo apt-get install libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev

然后重新运行

pip install pillow

最后欢迎大家观看我关于 django + xadmin的教程:

http://coding.imooc.com/class/evaluation/78.html

linux下安装mysql-python出错

命令

pip install mysql-python

然后出错了:

Traceback (most recent call last):
  File "", line 1, in 
  File "/tmp/pip-build-YEYPJp/mysql-python/setup.py", line 17, in 
    metadata, options = get_config()
  File "setup_posix.py", line 43, in get_config
    libs = mysql_config("libs_r")
  File "setup_posix.py", line 25, in mysql_config
    raise EnvironmentError("%s not found" % (mysql_config.path,))
EnvironmentError: mysql_config not found

解决方法:

sudo apt-get install libmysqlclient-dev

然后重新安装就ok了

最后欢迎大家观看我关于 django + xadmin的教程:

http://coding.imooc.com/class/evaluation/78.html

你可能感兴趣的:(Django)