Re: newbie problem: no django.core.management

2007-10-22 Thread Matthew Wensin
Make sure that /path/to/django/bin is in your $PATH and also that django is accessible through your /path/to/python/site-packages directory. Can you successfully run this: [EMAIL PROTECTED] python >>> import django ? Matt On 10/22/07 9:34 AM, "johannes" <[EMAIL PROTECTED]> wrote: > > Ok. A

Re: newbie problem: no django.core.management

2007-10-22 Thread Matthew Wensin
$ sudo updatedb $ locate django Look for: /path/to/django/bin/manage.py /path/to/django/bin/django-admin.py ... That /bin should be on your $PATH. If you feel comfortable with it, I recommend using SVN to check out the latest django development version: /wherever/you/want$ sudo svn co http://

Re: geodjango and MySQL

2007-10-25 Thread Matthew Wensin
I am flying along with plenty of polygons using GeoDjango and PostgreSQL. Not sure about MySQL, however. On 10/25/07 11:47 AM, "Greg_IAP" <[EMAIL PROTECTED]> wrote: > > does django works with spatial queries(PolygonField and > multipolygonField) when applications are developped to work with a

Re: Python 2.5, Postgres, Psycopg2 on OS X

2007-10-25 Thread Matthew Wensin
I've dealt with that exact error before, just yesterday, incidentally. What I did to fix: $ locate libpq.5 If this returns nothing, try running: $ sudo /usr/libexec/locate.updatedb And then $ locate libpq.5 again. Go to the directory containing libpq.5 (for me it was /usr/local/pgsql/lib, an

Re: Python 2.5, Postgres, Psycopg2 on OS X

2007-10-25 Thread Matthew Wensin
. I think the ports way is better. :-) > > Just my 2 cents. > > On 10/26/07, Matthew Wensin <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > > wrote: >> >> I've dealt with that exact error before, just yesterday, incidentally. What >> I did to fix: