为Python 2.7安装MySQL-python模块时出错

时间:2011-11-23 03:28:16

标签: python mysql django mysql-python

我目前正在尝试为Python构建和安装mySQLdb模块,但命令

python setup.py build

给我以下错误

running build running build_py copying MySQLdb/release.py -> build/lib.macosx-10.3-intel-2.7/MySQLdb error: could not delete 'build/lib.macosx-10.3-intel-2.7/MySQLdb/release.py': Permission denied

我验证了我是root用户,在尝试使用sudo执行脚本时,我得到了gcc-4.0错误:

running build running build_py copying MySQLdb/release.py -> build/lib.macosx-10.3-fat-2.7/MySQLdb running build_ext building '_mysql' extension gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -g -O2 -DNDEBUG -g -O3 -Dversion_info=(1,2,3,'final',0) -D__version__=1.2.3 -I/usr/local/mysql/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c _mysql.c -o build/temp.macosx-10.3-fat-2.7/_mysql.o -Os -g -fno-common -fno-strict-aliasing -arch x86_64 unable to execute gcc-4.0: No such file or directory error: command 'gcc-4.0' failed with exit status 1

这很奇怪,因为我在Python 2.7中使用XCode 4。我已经尝试了easy_install和pip方法,这两种方法都不起作用,并在release.py上给我一个权限被拒绝的错误。我已经修改了那个文件,看看是不是问题但没有运气。想法?

2 个答案:

答案 0 :(得分:1)

确保 gcc-4.0 位于路径中。此外,您可以从 gcc 创建别名到 gcc-4.0

注意32b和64b版本。 Mac OS X是一个64b操作系统,您应该使用正确的标志来确保您正在为64b架构进行编译。

答案 1 :(得分:0)

如果您使用的是Windows,则可以使用预编译的安装程序。检查this page是否有许多此类安装程序,包括MySQLdb for various Python releases