Инсталирането на MySQL Connector/Python .dmg на osx е успешно, но не мога да намеря модула

Изтеглих Mysql Connector/Python 1.1.6 .DMG за OSX http://dev.mysql.com/downloads/connector/python/

Когато го стартирам, той казва "успешна инсталация", но не дава друга инсталация или диагностика.

Но когато се опитам да проверя успешната инсталация http://dev.mysql.com/doc/connector-python/en/connector-python-verification.html

пише, че не мога да намеря модула

vt102:~ xxxxx$ python

Python 2.7.6 |Anaconda 1.9.2 (x86_64)| (default, Jan 10 2014, 11:23:15) 
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

>>> import mysql.connector

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named mysql.connector

Досега всичко работеше лесно с Python, но тези неща с mysql/python бяха кошмар. Някакъв съвет?

//АКТУАЛИЗАЦИЯ

Намерих install.log и потърсих улики от инсталацията, но не виждам нищо полезно или подозрително

Apr 24 08:45:02 vt102.local Installer[8474]: MySQL database driver written in pure Python  Installation Log
Apr 24 08:45:02 vt102.local Installer[8474]: Opened from: /Volumes/mysql-connector-python-1.1.6/mysql-connector-python-1.1.6.pkg
Apr 24 08:45:02 vt102.local Installer[8474]: fileURLForURL = x-disc://mysql-connector-python-1.1.6/mysql-connector-python-1.1.6.pkg
Apr 24 08:45:02 vt102.local Installer[8474]: fileURLForURL = file://localhost/Volumes/mysql-connector-python-1.1.6/mysql-connector-python-1.1.6.pkg
Apr 24 08:45:46 vt102.local Installer[8474]:    Upgrade: "MySQL database driver written in pure Python"
Apr 24 08:45:46 vt102.local Installer[8474]:        mysql-connector-python-1.1.6.pkg : com.oracle.mysql.connector.python : 1.1.6.1.1
Apr 24 08:45:46 vt102.local Installer[8474]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/mysql-connector-python-1.1.6/mysql-connector-python-1.1.6.pkg
        "PKJaguarPackage <file://localhost/Volumes/mysql-connector-python-1.1.6/mysql-connector-python-1.1.6.pkg>"
Apr 24 08:45:46 vt102.local installd[413]: PackageKit: Will do receipt-based obsoleting for package identifier com.oracle.mysql.connector.python (prefix path=)
Apr 24 08:45:46 vt102.local installd[413]: PackageKit: Extracting file://localhost/Volumes/mysql-connector-python-1.1.6/mysql-connector-python-1.1.6.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/0992398D-F177-487C-8A6F-7A43E760ED1B.activeSandbox/Root, uid=0)
Apr 24 08:45:47 vt102.local installd[413]: PackageKit: Writing receipt for com.oracle.mysql.connector.python to /private/var/db/receipts
Apr 24 08:45:47 vt102.local installd[413]: Installed "MySQL database driver written in pure Python" ()

person user3556757    schedule 24.04.2014    source източник


Отговори (1)


Oracle не ви позволява да изберете пътя за инсталиране; ето работа около:

  1. Изтеглете независимата от платформата версия от Oracle.

  2. Разархивирайте папката и я поставете в директорията anaconda.

  3. Отворете терминала и отидете в директорията на mysql конектора.

  4. Тип: python setup.py install

person Chrisji    schedule 08.08.2014