进入root 权限下
1
2
|
apt-get install mysql-server
apt-get install mysql-client
|
创建数据库
1
2
3
|
如果数据库存在要进行改动可以直接使用
1
|
mysql -u root -p passward basename
|
创建表
1
|
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://blog.csdn.net/wangfenghui132/article/details/54286888