Re: Django psycopg error

2012-05-13 Thread akaariai
It seems the browsershots really uses psycopg, and you will need that to use the software. The latest releases of the psycopg 1 series are from late 2010 so you have a good chance to get it working. - Anssi On May 13, 1:52 am, Mike Di Domenico wrote: > It really

Re: Django psycopg error

2012-05-12 Thread Mike Di Domenico
It really says psycopg, not psycopg2. I am not entirely sure what is being imported for I am trying to install Browsershots Central Server, http://code.google.com/p/browsershots/source/checkout, and I have never used Python/Django before. Thanks for all of your help, Mike On Friday, May 11,

Re: Django psycopg error

2012-05-11 Thread akaariai
On May 11, 7:37 pm, Mike Di Domenico wrote: > I have the python-psycopg2 package installed and the settings for my engine > are 'django.db.backends.postgresql_psycopg2' and I am still getting the > error. > > When I do "python manage.py shell" I get the error "Error:

Re: Django psycopg error

2012-05-11 Thread Mike Di Domenico
I have the python-psycopg2 package installed and the settings for my engine are 'django.db.backends.postgresql_psycopg2' and I am still getting the error. When I do "python manage.py shell" I get the error "Error: No module named psycopg". The contents of manage.py are the following: from

Re: Django psycopg error

2012-05-10 Thread Bhargav Kowshik
On Thursday 10 May 2012 11:05 PM, Mike Di Domenico wrote: I get no response/error: Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56) [GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. import psycopg2 Thanks for your help, Mike On Thursday, May 10,

Re: Django psycopg error

2012-05-10 Thread Wally Yu
Not sure if downgrade your psycopg2 version to lower version would be working, let's say version 2.4.1 Thanks, Wally On May 11, 12:17 am, Mike Di Domenico wrote: > Good afternoon, > I am working on installing Django to work with a postgresql on ubuntu 10.04 > server

Re: Django psycopg error

2012-05-10 Thread Lucas Xavier
Make shure you have psycopg2 module installed on the same path as python. -- Atenciosamente, Lucas Xavier 2012/5/10 Mike Di Domenico > Good afternoon, > I am working on installing Django to work with a postgresql on ubuntu > 10.04 server (32bit). I have

Re: Django psycopg error

2012-05-10 Thread Mike Di Domenico
I get no response/error: Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56) [GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import psycopg2 >>> Thanks for your help, Mike On Thursday, May 10, 2012 1:25:29 PM UTC-4, Karl Sutt wrote: > > Hello, > >

Re: Django psycopg error

2012-05-10 Thread Karl Sutt
Hello, Open up a Python shell and try import psycopg2 And let us know what happens. Karl Sutt On Thu, May 10, 2012 at 5:17 PM, Mike Di Domenico < didomenico.mi...@gmail.com> wrote: > Good afternoon, > I am working on installing Django to work with a postgresql on ubuntu > 10.04 server

Django psycopg error

2012-05-10 Thread Mike Di Domenico
Good afternoon, I am working on installing Django to work with a postgresql on ubuntu 10.04 server (32bit). I have postgresql-8.4 installed, Django version 1.5, python version 2.6.5, and I have the psycopg2 module installed (I think). I am getting the error "Error: No module named psycopg" I

psycopg error

2006-09-13 Thread Ian
Hi, I have an existing 3GB PostGIS legacy database which i am inspecting with: django-admin.py inspectdb > /some/directory/models.py i have installed psycopg2 so my settings.py looks like: DATABASE_ENGINE = 'postgresql_psycopg2' when i run the command i get the error: File