2017-06-05 12 views
0

私はPython3.4/Djangoプロジェクト(CentOS 6.8x64)で作業しており、mysqlclientドライバをインストールしようとしています。数時間のグーグル・グーグルにもかかわらず、私はインストール中にコンパイル・エラーのように見えるものをどのように分類するかを理解できません。Linuxでmysqlclient pipが失敗しました

私が知る限り、必要なライブラリパッケージがすべてインストールされていますが、これまでのところ運はありません。ここで、出力は(冗長用申し訳ありません)です:

$ sudo pip3 install mysqlclient 
Collecting mysqlclient 
    Using cached mysqlclient-1.3.10.tar.gz 
Installing collected packages: mysqlclient 
    Running setup.py install for mysqlclient ... error 
    Complete output from command /usr/bin/python3.4 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-qqqgbh_2/mysqlclient/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-cwqrqsw1-record/install-record.txt --single-version-externally-managed --compile: 
    running install 
    running build 
    running build_py 
    creating build 
    creating build/lib.linux-x86_64-3.4 
    copying _mysql_exceptions.py -> build/lib.linux-x86_64-3.4 
    creating build/lib.linux-x86_64-3.4/MySQLdb 
    copying MySQLdb/__init__.py -> build/lib.linux-x86_64-3.4/MySQLdb 
    copying MySQLdb/compat.py -> build/lib.linux-x86_64-3.4/MySQLdb 
    copying MySQLdb/connections.py -> build/lib.linux-x86_64-3.4/MySQLdb 
    copying MySQLdb/converters.py -> build/lib.linux-x86_64-3.4/MySQLdb 
    copying MySQLdb/cursors.py -> build/lib.linux-x86_64-3.4/MySQLdb 
    copying MySQLdb/release.py -> build/lib.linux-x86_64-3.4/MySQLdb 
    copying MySQLdb/times.py -> build/lib.linux-x86_64-3.4/MySQLdb 
    creating build/lib.linux-x86_64-3.4/MySQLdb/constants 
    copying MySQLdb/constants/__init__.py -> build/lib.linux-x86_64-3.4/MySQLdb/constants 
    copying MySQLdb/constants/CLIENT.py -> build/lib.linux-x86_64-3.4/MySQLdb/constants 
    copying MySQLdb/constants/CR.py -> build/lib.linux-x86_64-3.4/MySQLdb/constants 
    copying MySQLdb/constants/ER.py -> build/lib.linux-x86_64-3.4/MySQLdb/constants 
    copying MySQLdb/constants/FIELD_TYPE.py -> build/lib.linux-x86_64-3.4/MySQLdb/constants 
    copying MySQLdb/constants/FLAG.py -> build/lib.linux-x86_64-3.4/MySQLdb/constants 
    copying MySQLdb/constants/REFRESH.py -> build/lib.linux-x86_64-3.4/MySQLdb/constants 
    running build_ext 
    building '_mysql' extension 
    creating build/temp.linux-x86_64-3.4 
    gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -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,3,10,'final',0) -D__version__=1.3.10 -I/usr/include/mysql -I/usr/include/python3.4m -c _mysql.c -o build/temp.linux-x86_64-3.4/_mysql.o 
    _mysql.c: In function ‘_mysql_ConnectionObject_ping’: 
    _mysql.c:1911: error: ‘MYSQL’ has no member named ‘reconnect’ 
    error: command 'gcc' failed with exit status 1 

    ---------------------------------------- 
Command "/usr/bin/python3.4 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-qqqgbh_2/mysqlclient/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-cwqrqsw1-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-qqqgbh_2/mysqlclient/ 
+1

これは私にとってライブラリの互換性のようです。 mysqlclientの古いバージョンが必要なのでしょうか? – Gadzooks34

答えて

0

私はあなたが(それはCentOSの6ですでに使用可能な場合)をコンパイルするために、mysqlの-develのかmariadb-develのをインストールする必要がありますね。

yum install mysql-devel 
+1

私はそれもそうだと思っていたかもしれませんが、私はすでにそれをインストールしています(MariaDB-devel.x86_64) – Gadzooks34

+0

私は同じ考えをしましたが、私はMariaDBに問題があります。私はMariaDBの視点から次のインストールを得ました... $ sudo dnf list installed | grep "maria" mariadb mariadb-common mariadb-config mariadb-devel mariadb-errmsg mariadb-libs mariadb-server mariadb-server-utils – mjwittering

+0

私はレポにも記載されていない人の多くです。私はMariaDBのウェブサイトから標準のものを追加したと思った。別のものを追加しなければなりませんか? – Gadzooks34

0

これは、mysqlclientとMariaDB(10.2)の最新バージョンとの間の互換性の問題でした。パッケージレポをMariaDB(10.0または10.1)の古いバージョンを指すように調整し、mysqlclientをインストールして問題なくインストールしました。

関連する問題