红联Linux门户
Linux帮助

在Ubuntu上安装Mysql For Python

发布时间:2016-09-06 08:09:24来源:linux网站作者:陈云林
安装:
首先安装pip,并且把pip更新到最小版本
apt-get install python-pip
pip install -U pip
 
安装mysql开发包
apt-get install python-dev libmysqlclient-dev
 
通过pip安装Mysql For Python
pip install MySQL-python
 
测试,在Python命令行里输入import MySQLdb,看报不报错
xxx@ubuntu:~$ python
Python 2.7.12 (default, Jul  1 2016, 15:12:24) 
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import MySQLdb
 
注:用apt-get 命令时需要root权限,如果执行命令时用得不是root账户,需要使用sudo命令,比如安装python-pip时,需要输入
sudo apt-get install python-pip
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23922.html