Ubuntu16.04自带Python2.7 和Python3.5 两个版本。
在终端输入python则运行的Python2.7版本
![](https://img.haomeiwen.com/i6166218/985b3fe68c6df969.png)
在终端输入python3则运行python3.5版本
![](https://img.haomeiwen.com/i6166218/75b98f4cb275723c.png)
安装pymysql
pip install pymysql
如果报一下错误
fatal error: openssl/opensslv.h: No such file or directory
则先安装以下组件
sudo apt-get install libssl-dev
然后再次运行命令
pip install pymysql
网友评论