Ubuntu 14.04安装PyMySQL
程序员文章站
2022-05-09 21:53:15
...
PyMySQL是Python3连接MySQL的第三方库。
Ubuntu默认的Python版本是2.7.x,但个人习惯用Python3,因此第一步:切换Python版本
第二步:
sudo pip install PyMySQL
如果报错:
RuntimeError: cryptography requires setuptools 18.5 or newer, please upgrade to a newer version of setuptool
sudo pip install --upgrade setuptools
一定要在root权限下进行,否则会出错。解决方案出处: aaron_agu
如果报错:
fatal error: ffi.h: No such file or directory
则是libffi-dev包没有安装,安装:
sudo apt-ge install libffi-dev
如果报错:
Command python setup.py egg_info failed with error code 1 in /tmp/pip_build_username/cryptography
Storing debug log for failure in /home/username/.pip/pip.log
则执行
sudo python -m pip install --upgrade --force pip
解决方案出处:DdongdongBai
最后,判断有没有安装完成:
启动Python,import:
import pymysql
转载于:https://www.jianshu.com/p/d84cdb5e6273
推荐阅读
-
VMware Workstation 15 Pro中安装ubuntu1804
-
ubuntu 13.10编译安装mono环境(二)
-
Ubuntu 14.04下安装Eclipse的经验分享
-
ubuntu 安装精简桌面
-
[视频教程] ubuntu系统下以守护进程方式安装使用Redis
-
ubuntu 安装FoxitReader福昕阅读器(转载)
-
ASP.NET Core部署前期准备 使用Hyper-V安装Ubuntu Server 16.10
-
Ubuntu Server 16.04下mysql8.0安装配置图文教程
-
Ubuntu 远程登陆服务器 ssh的安装和配置详解
-
Ubuntu1604生产环境下编译安装mariadb10.2.26