Re: MySQLdb setup on snow leopard help

2010-04-14 Thread Bdidi
On Apr 14, 12:51 am, VWAllen wrote: > I had a lot of trouble at first getting things setup on Snow Leopard > (mostly 32-bit/64-bit problems). > > Ultimately, I loaded the full stack through MacPorts (apache, mysql, > python, wsgi, django, etc. etc.). Almost all of the problems I ran > into with th

Re: MySQLdb setup on snow leopard help

2010-04-14 Thread Bdidi
On Apr 14, 12:51 am, VWAllen wrote: > I had a lot of trouble at first getting things setup on Snow Leopard > (mostly 32-bit/64-bit problems). > > Ultimately, I loaded the full stack through MacPorts (apache, mysql, > python, wsgi, django, etc. etc.). Almost all of the problems I ran > into with th

Re: MySQLdb setup on snow leopard help

2010-04-13 Thread VWAllen
I had a lot of trouble at first getting things setup on Snow Leopard (mostly 32-bit/64-bit problems). Ultimately, I loaded the full stack through MacPorts (apache, mysql, python, wsgi, django, etc. etc.). Almost all of the problems I ran into with this method were related to making sure that other

Re: MySQLdb setup on snow leopard help

2010-04-12 Thread Bdidi
On Apr 13, 8:07 am, Bdidi wrote: > On Apr 12, 8:31 pm, Steven Elliott Jr wrote:> Did > you run the install as sudo? Yes, the install was run as sudo. Alex Robbins wrote > If you are planning to deploy to linux servers, you might have a nicer > time developing on a linux vm. I have a mac, bu

Re: MySQLdb setup on snow leopard help

2010-04-12 Thread Bdidi
On Apr 12, 8:31 pm, Steven Elliott Jr wrote: > Did you run the install as sudo? > > -Steven Elliott Jr > Hmm, good question - I'd better check that. Thanks, Brett -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send em

Re: MySQLdb setup on snow leopard help

2010-04-12 Thread Alex Robbins
If you are planning to deploy to linux servers, you might have a nicer time developing on a linux vm. I have a mac, but do my development in an ubuntu vm. Many difficult installations become a simple "sudo apt- get install ". YMMV, Alex On Apr 12, 2:09 am, Bdidi wrote: > I reinstalled XCode to in

Re: MySQLdb setup on snow leopard help

2010-04-12 Thread Steven Elliott Jr
Did you run the install as sudo? -Steven Elliott Jr On Apr 12, 2010, at 3:09 AM, Bdidi wrote: I reinstalled XCode to include 10.4 support and tried again, and MySQLdb is now installed, but now I get this: File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ site-packages/dj

Re: MySQLdb setup on snow leopard help

2010-04-12 Thread Bdidi
I reinstalled XCode to include 10.4 support and tried again, and MySQLdb is now installed, but now I get this: File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ site-packages/django/db/backends/mysql/base.py", line 13, in raise ImproperlyConfigured("Error loading MySQLdb

Re: MySQLdb setup on snow leopard help

2010-04-11 Thread Bdidi
I'm also having problems with this. Installing setuptools was no problem, but I still get errors trying to install MYSQLdb - this: dyld: Library not loaded: /usr/local/lib/libintl.3.dylib Referenced from: /usr/local/bin/gnused Reason: image not found which is odd since libintl.3.dylib is de

Re: MySQLdb setup on snow leopard help

2010-04-09 Thread jmswen
Out of curiosity, are you using a version of Python that you installed (i.e., not the out-of-the-box version that comes with Snow Leopard)? You are missing the setuptools package in your installation of Python. Visit http://pypi.python.org/pypi/setuptools and read the download/installation instru

MySQLdb setup on snow leopard help

2010-04-08 Thread CG
I have successfully setup django, although I am not sure how I did it. Now I am trying to setup MySQLdb but keep getting the error File "setup.py", line 5, in from setuptools import setup, Extension ImportError: No module named setuptools -- You received this message because you are subs