- 论坛徽章:
- 0
|
在命令行下面是正常的。
- D:\dev_py\edit>python
- Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
- Type "help", "copyright", "credits" or "license" for more information.
- >>> import MySQLdb
- >>> conn = MySQLdb.connect(host='localhost', user='root',passwd='root',charset='utf8')
- >>> cur=conn.cursor()
复制代码 但是,使用文件执行,就提示没有MySQLdb- D:\dev_py\edit>more mysql_test_insert.py
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import sys
- import MySQLdb
- reload(sys)
- sys.setdefaultencoding('utf-8')
- conn = MySQLdb.connect(host='localhost', user='root',passwd='root',charset='utf8')
- #cur=conn.cursor()
复制代码 提示错误:- D:\dev_py\edit>mysql_test_insert.py
- Traceback (most recent call last):
- File "D:\dev_py\edit\mysql_test_insert.py", line 5, in <module>
- import MySQLdb
- ImportError: No module named MySQLdb
复制代码 |
|