45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:ubuntu系统下python链接mysql数据库教程介绍

ubuntu系统下python链接mysql数据库教程介绍

2017-02-22 21:33:39 来源:www.45fan.com 【

ubuntu系统下python链接mysql数据库教程介绍

进入root 权限下

apt-get install mysql-server
apt-get install mysql-client

创建数据库

mysql -u root -p passward 链接数据库
create database basename
use basename

如果数据库存在要进行改动可以直接使用

mysql -u root -p passward basename

创建表

create table latest_face( id int(11) not null auto_increment, camera_id varchar(240) not null, picture mediumblob not null, datetime datetime not null, people_id int(11) not null, people_name varchar(16),accessed int(4) not null,primary key(id) )charset = gb2312;

用python链接数据库。

当使用apt-get install mysql-python 的时候,会提示未发现软件包mysql-python。但是直接下载再安装又非常麻烦,所以使用了pip install mysql-python

在使用pip install mysql-python的时候,提示EnvironmentError: mysql_config not found。此时重装libmysqlclient-dev,pt-get install libmysqlclient-dev,然后pip install mysql-python.就安装成功了

在python下输入import MySQLdb测试是否可以使用

以上所述是小编给大家介绍的ubuntu系统下 python链接mysql数据库的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对路饭网站的支持!


本文地址:http://www.45fan.com/a/question/87097.html
Tags: 系统 Ubuntu python
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部