Problem installing python MySQLdb on Mac OS X Version 10.5.8

2012-01-09 Thread Larry Martell
Some may consider this slightly off-topic, but I'm out of places to
turn to, so I'm hoping someone here can help me.


I am having no luck with getting the python module MySQLdb to work on
my Mac. I am getting the dreaded 'wrong architecture' message when I
try to import the module. I googled this, and found this page:

http://stackoverflow.com/questions/3061277/python-mysql-wrong-architecture-error

Following the instructions there I found that I did indeed have the 64
bit MySQL and a 32 bit python. I rectified that by deleting the 64-bit
install and then installing the 32-bit. Here's confirmation of that:

$ python -c 'import platform; print platform.platform()'
Darwin-9.8.0-i386-32bit

$ ls -l /usr/local/mysql
lrwxr-xr-x  1 root  wheel  24 Jan  8 22:09 /usr/local/mysql -
mysql-5.5.19-osx10.5-x86

I rebuilt and reinstalled, but no joy. I added the env vars to my
.profile as suggested on that web page:

PATH=/usr/local/mysql/bin:${PATH}
export PATH
export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/
export VERSIONER_PYTHON_PREFER_64_BIT=no
export VERSIONER_PYTHON_PREFER_32_BIT=yes
export ARCHFLAGS=-arch i386

Sourced my .profile, rebuilt and reinstalled, same error.

I'm thinking that perhaps something from the build I did when I had I
the 64-bit MySQL is getting left behind and messing up the new build.
But I don't know what that could be.

Any help anyone could provide will be greatly appreciated. Below I've
pasted the error I get, as well as the output from the build and
install:

$ python
Python 2.6.7 (r267:88850, Jan  7 2012, 13:37:49)
[GCC 4.0.1 (Apple Inc. build 5490)] on darwin
Type help, copyright, credits or license for more information.
 import MySQLdb
Traceback (most recent call last):
 File stdin, line 1, in module
 File build/bdist.macosx-10.4-i386/egg/MySQLdb/__init__.py, line
19, in module
 File build/bdist.macosx-10.4-i386/egg/_mysql.py, line 7, in module
 File build/bdist.macosx-10.4-i386/egg/_mysql.py, line 6, in __bootstrap__
ImportError: 
dlopen(/Users/user/.python-eggs/MySQL_python-1.2.3-py2.6-macosx-10.4-i386.egg-tmp/_mysql.so,
2): no suitable image found.  Did find:
       
/Users/user/.python-eggs/MySQL_python-1.2.3-py2.6-macosx-10.4-i386.egg-tmp/_mysql.so:
mach-o, but wrong architecture

$ python setup.py build
running build
running build_py
copying MySQLdb/release.py - build/lib.macosx-10.4-i386-2.6/MySQLdb
running build_ext

$ sudo python setup.py install
running install
running bdist_egg
running egg_info
writing MySQL_python.egg-info/PKG-INFO
writing top-level names to MySQL_python.egg-info/top_level.txt
writing dependency_links to MySQL_python.egg-info/dependency_links.txt
reading manifest file 'MySQL_python.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'MANIFEST'
warning: no files found matching 'ChangeLog'
warning: no files found matching 'GPL'
writing manifest file 'MySQL_python.egg-info/SOURCES.txt'
installing library code to build/bdist.macosx-10.4-i386/egg
running install_lib
running build_py
copying MySQLdb/release.py - build/lib.macosx-10.4-i386-2.6/MySQLdb
running build_ext
creating build/bdist.macosx-10.4-i386/egg
copying build/lib.macosx-10.4-i386-2.6/_mysql.so -
build/bdist.macosx-10.4-i386/egg
copying build/lib.macosx-10.4-i386-2.6/_mysql_exceptions.py -
build/bdist.macosx-10.4-i386/egg
creating build/bdist.macosx-10.4-i386/egg/MySQLdb
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/__init__.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/connections.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb
creating build/bdist.macosx-10.4-i386/egg/MySQLdb/constants
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/constants/__init__.py
- build/bdist.macosx-10.4-i386/egg/MySQLdb/constants
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/constants/CLIENT.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb/constants
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/constants/CR.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb/constants
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/constants/ER.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb/constants
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/constants/FIELD_TYPE.py
- build/bdist.macosx-10.4-i386/egg/MySQLdb/constants
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/constants/FLAG.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb/constants
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/constants/REFRESH.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb/constants
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/converters.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/cursors.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/release.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb
copying build/lib.macosx-10.4-i386-2.6/MySQLdb/times.py -
build/bdist.macosx-10.4-i386/egg/MySQLdb
byte-compiling build/bdist.macosx-10.4-i386/egg/_mysql_exceptions.py
to _mysql_exceptions.pyc

Re: Problem installing python MySQLdb on Mac OS X Version 10.5.8

2012-01-09 Thread Larry Martell
On Mon, Jan 9, 2012 at 2:21 PM, Larry Martell larry.mart...@gmail.com wrote:
 Some may consider this slightly off-topic, but I'm out of places to
 turn to, so I'm hoping someone here can help me.


 I am having no luck with getting the python module MySQLdb to work on
 my Mac. I am getting the dreaded 'wrong architecture' message when I
 try to import the module. I googled this, and found this page:

 http://stackoverflow.com/questions/3061277/python-mysql-wrong-architecture-error

 Following the instructions there I found that I did indeed have the 64
 bit MySQL and a 32 bit python. I rectified that by deleting the 64-bit
 install and then installing the 32-bit. Here's confirmation of that:

 $ python -c 'import platform; print platform.platform()'
 Darwin-9.8.0-i386-32bit

 $ ls -l /usr/local/mysql
 lrwxr-xr-x  1 root  wheel  24 Jan  8 22:09 /usr/local/mysql -
 mysql-5.5.19-osx10.5-x86

 I rebuilt and reinstalled, but no joy. I added the env vars to my
 .profile as suggested on that web page:

 PATH=/usr/local/mysql/bin:${PATH}
 export PATH
 export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/
 export VERSIONER_PYTHON_PREFER_64_BIT=no
 export VERSIONER_PYTHON_PREFER_32_BIT=yes
 export ARCHFLAGS=-arch i386

 Sourced my .profile, rebuilt and reinstalled, same error.

 I'm thinking that perhaps something from the build I did when I had I
 the 64-bit MySQL is getting left behind and messing up the new build.
 But I don't know what that could be.

I solved this, and this is exactly what it was. Although I was doing a
'sudo python setup.py clean' between builds, it was not removing
everything. I did a 'sudo rm -rf build/*', then rebuild and reinstall,
and this error went away.

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql