ImportError:没有名为 _mysql 的模块
Posted
技术标签:
【中文标题】ImportError:没有名为 _mysql 的模块【英文标题】:ImportError: No module named _mysql 【发布时间】:2017-01-02 01:41:39 【问题描述】:我正在尝试使用 Python 模块 mysql-python 从运行 amazon linux 的 AWS EC2 实例连接到外部 MySQL 数据库。
这是我要运行的代码:
db=_mysql.connect(host="hostname",user="dbuser",passwd="dbpassword",db="database")
db.query("""SELECT id, field1 FROM test""")
r=db.store_result()
row = r.fetch_row()
print row
我已经用 pip 安装了 python 模块:
sudo pip install MySQL-python
当我运行脚本时,我收到以下错误消息:
Traceback (most recent call last):
File "script.py", line 2, in <module>
import _mysql
ImportError: No module named _mysql
当我对此进行研究时,我一直在为 Ubuntu/Debian linux 挖掘许多不适用于 amazon linux 的解决方案。
如何在 amazon linux 上修复此错误并运行脚本?
此外,来自任何有经验的 linux 用户的观察/回答:当我尝试学习更多 linux 并选择 AWS 时,使用 amazon linux 有什么优势,还是使用 Ubuntu/Debian 映像会更好?从问题中可能可以看出,我不是一个有经验的 linux 用户。
更新
我发现在 amazon linux 服务器上安装包不成功。这是我尝试通过 pip 运行安装时的完整输出:
$ sudo pip install MySQL-Python
Collecting MySQL-Python
Using cached MySQL-python-1.2.5.zip
Installing collected packages: MySQL-Python
Running setup.py install for MySQL-Python ... error
Complete output from command /usr/bin/python2.7 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-B1IkvH/MySQL-Python/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-RNgtpa-record/install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_py
creating build
creating build/lib.linux-x86_64-2.7
copying _mysql_exceptions.py -> build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/MySQLdb
copying MySQLdb/__init__.py -> build/lib.linux-x86_64-2.7/MySQLdb
copying MySQLdb/converters.py -> build/lib.linux-x86_64-2.7/MySQLdb
copying MySQLdb/connections.py -> build/lib.linux-x86_64-2.7/MySQLdb
copying MySQLdb/cursors.py -> build/lib.linux-x86_64-2.7/MySQLdb
copying MySQLdb/release.py -> build/lib.linux-x86_64-2.7/MySQLdb
copying MySQLdb/times.py -> build/lib.linux-x86_64-2.7/MySQLdb
creating build/lib.linux-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/__init__.py -> build/lib.linux-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/CR.py -> build/lib.linux-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/FIELD_TYPE.py -> build/lib.linux-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/ER.py -> build/lib.linux-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/FLAG.py -> build/lib.linux-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/REFRESH.py -> build/lib.linux-x86_64-2.7/MySQLdb/constants
copying MySQLdb/constants/CLIENT.py -> build/lib.linux-x86_64-2.7/MySQLdb/constants
running build_ext
building '_mysql' extension
creating build/temp.linux-x86_64-2.7
gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Dversion_info=(1,2,5,'final',1) -D__version__=1.2.5 -I/usr/include/mysql55 -I/usr/include/python2.7 -c _mysql.c -o build/temp.linux-x86_64-2.7/_mysql.o -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -fwrapv -fPIC -fPIC -g -static-libgcc -fno-omit-frame-pointer -fno-strict-aliasing -DMY_PTHREAD_FASTMUTEX=1
unable to execute 'gcc': No such file or directory
error: command 'gcc' failed with exit status 1
----------------------------------------
Command "/usr/bin/python2.7 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-B1IkvH/MySQL-Python/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-RNgtpa-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-B1IkvH/MySQL-Python/
【问题讨论】:
我会检查安装 python 的模块,你现在正在运行它。 感谢您的建议 - 是的,模块似乎没有成功安装。 pip install 的输出现在粘贴在上面。 【参考方案1】:只是一种解决方法,但在我无法轻松调用“sudo pip install”的情况下对我有用。
您(通常,并非总是)可以做什么:
-
转到您正在寻找的 Python 模块工作的系统
确定其“位置”,例如,在我的 ubuntu 上安装 enum34 后,安装会将文件放在 /usr/lib/python2.7/dist-packages/enum 下
将该目录放入存档中
在您的“目标”系统上,在本地解压缩该存档
操作 python 路径以包含本地提取的存档
如前所述,这并不漂亮;但如果没有更好的答案;你至少有一些东西可以尝试......
【讨论】:
感谢您的建议。所以简而言之,这就是将另一个系统中已经安装的代码转储到新系统中,并根据需要修改路径。安装过程不是比这更复杂吗?难道没有什么可以错过的吗?有使用 AWS 的经验吗?你会为亚马逊 linux 烦恼吗? 正确;转储和修改 ;-) 好吧,对于某些 python 模块,安装过程甚至可能包括编译内容。我的观点基本上是:这在过去帮助了我。我没有使用 AWS 的经验;而且我无法告诉你是否必须使用 Amazon Linux! 干杯。我想我会继续在 Ubuntu 上学习。在阅读了更多内容后,我认为当亚马逊员工支持大型设置时,亚马逊 linux 会发挥自己的作用,而我不需要学习 AWS/linux。 嗯,人们总是可以用“商业视角”来看待这样的“决定”(我应该在哪里“投资”我的学习时间)。在某种程度上,问“如果我在这里……或那里度过我的时间,‘投资回报’会是多少”总是有道理的。以上是关于ImportError:没有名为 _mysql 的模块的主要内容,如果未能解决你的问题,请参考以下文章
ImportError:没有名为 _imagingtk 的模块