美文网首页
ubuntu16.04安装pymysql

ubuntu16.04安装pymysql

作者: 几回寒暑 | 来源:发表于2018-08-06 17:42 被阅读0次

Ubuntu16.04自带Python2.7 和Python3.5 两个版本。
在终端输入python则运行的Python2.7版本

在终端输入python3则运行python3.5版本

安装pymysql

pip install pymysql

如果报一下错误

 fatal error: openssl/opensslv.h: No such file or directory

则先安装以下组件

sudo apt-get install libssl-dev

然后再次运行命令

pip install pymysql

相关文章

网友评论

      本文标题:ubuntu16.04安装pymysql

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