ubuntu16.04 python3安装pymysql错误
Posted Python_Boy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu16.04 python3安装pymysql错误相关的知识,希望对你有一定的参考价值。
今天在服务器上搭建django开发环境的时候遇到了一问题,就是在python3下安装pymysql 出现以下问题
1.Failed cleaning build dir for cryptography
2.Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__=‘/tmp/pip-build-yzhhq2aa/cryptography/setup.py‘;exec(compile(getattr(tokenize, ‘open‘, open)(__file__).read().replace(‘ ‘, ‘ ‘), __file__, ‘exec‘))" install --record /tmp/pip-399_hd6n-record/install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in /tmp/pip-build-yzhhq2aa/cryptography/
原因就是系统缺少依赖包,一个命令装全解决:
sudo apt-get install python-dev python-pip libxml2-dev libxslt1-dev zlib1g-dev libffi-dev libssl-dev
以上是关于ubuntu16.04 python3安装pymysql错误的主要内容,如果未能解决你的问题,请参考以下文章
ubuntu16.04 python3 安装selenium及环境配置
ubuntu16.04 python3安装pymysql错误