2

virtualenv の作成中に --no-site-packages オプションを使用し、その後 MySQL-python をインストールしようとすると、次のようになります。

error: command 'gcc' failed with exit status 1

私が従った手順は次のとおりです。

easy_install-2.7 --install-dir ~/src/lib/ virtualenv==dev
~/src/lib/virtualenv  --no-site-packages ENV
.../ENV/bin/pip-2.7 install MySQL-python

私もmySQL-pythonをダウンロードしてインストールしようとしました

.../ENV/bin/python setup.py build

同じエラーが発生します。この virtualenv から gcc が欠落していると思いますが、 --no-site-packages オプションを使用しながら、この virtualenv に gcc をインストールするにはどうすればよいですか。ありがとう

編集: 以下のコメントによると、エラー出力全体がここにあります。

running build
running build_py
copying MySQLdb/release.py -> build/lib.linux-x86_64-2.7/MySQLdb
running build_ext
building '_mysql' extension
gcc -m32 -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -fPIC -Dversion_info=(1,2,3,'final',0) -D__version__=1.2.3 -I/usr/include/mysql -I/opt/lampp/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
In file included from /opt/lampp/include/python2.7/Python.h:58,
                 from pymemcompat.h:10,
                 from _mysql.c:29:
/opt/lampp/include/python2.7/pyport.h:849:2: error: #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)."
In file included from /usr/include/mysql/my_config.h:11,
                 from _mysql.c:36:
/usr/include/mysql/my_config_x86_64.h:1032:1: warning: "SIZEOF_LONG" redefined
In file included from /opt/lampp/include/python2.7/Python.h:8,
                 from pymemcompat.h:10,
                 from _mysql.c:29:
/opt/lampp/include/python2.7/pyconfig.h:989:1: warning: this is the location of the previous definition
error: command 'gcc' failed with exit status 1
4

2 に答える 2

1

mysql-devel パッケージが必要です。インストールするには、実際のパッケージ名を指定する必要があります -

sudo apt-get install libmysql++-dev
于 2011-06-20T01:42:14.503 に答える
0

sudo コマンドを使用してみましたか。ここで他の問題よりも、許可の問題が発生していると思います。通常、インストールは、所有していないルート権限でディレクトリにアクセスしようとするため、このエラーをスローします。

于 2011-04-23T16:48:39.770 に答える