美文网首页菜鸟
CentOS6.5 安装pip及MySQLdb、pyinstal

CentOS6.5 安装pip及MySQLdb、pyinstal

作者: 风雨byt | 来源:发表于2018-12-03 14:31 被阅读0次

安装好centos6.5后自带python2的版本但是似乎没有安装pip
所以我们需要安装一下
yum -y install epel-release
yum install python-pip
然后安装MySQLdb的依赖包
yum -y install mysql-devel
yum install gcc libffi-devel python-devel openssl-devel
安装MySQL-python
pip install MySQL-python

然后下载pyinstaller 2.0版本(版本太高不支持python2.7以下)
https://pypi.org/project/PyInstaller/2.0/#files
直接解压就可以用了
./pyinstaller -F dist
其他参数自己去官网查看

相关文章

网友评论

    本文标题:CentOS6.5 安装pip及MySQLdb、pyinstal

    本文链接:https://www.haomeiwen.com/subject/boeycqtx.html