Re: new Django-Python can't get to sqlite

2010-08-14 Thread jose antunes
I have recently had the same issue. The problem was a python sqlite3 library missing, by the name "_sqlite3.so". If that is missing it wont work. It can be found if present in the python directory, under the lib_dynload/ directory. Like this for exemple: /usr/lib/python26/lib_dynload/_sqlite3.so O

Re: new Django-Python can't get to sqlite

2010-08-13 Thread Piotr Zalewa
there us many ways to do so I'd install pip from the package (rpm, right?) and then run "pip install pysqlite3" but the best would be o read about virtualenv and prepare djsngo environment for the project (not globally) zalun On 10-08-14 00:11, Tom wrote: The opsys is rhel AS5.2. I couldn't

Re: new Django-Python can't get to sqlite

2010-08-13 Thread Tom
The opsys is rhel AS5.2. I couldn't find "yolk" on it (that's a program, right?). The machine has rpms for Python 2.4 & sqlite, but I was unable to get Django working with them. I thought Python 2.5 & later versions included sqlite, so I started installing all the software (Python, Django) in new

Re: new Django-Python can't get to sqlite

2010-08-13 Thread Piotr Zalewa
Google "install sqlite/mysql $your_operating_system" If you provide more info (result of running yolk and your operating system) we will be able to help you a bit more. zalun On 10-08-13 03:15, Tom wrote: It's my first time using Django& I'm unable to get the demo going. I would like to use

new Django-Python can't get to sqlite

2010-08-12 Thread Tom
It's my first time using Django & I'm unable to get the demo going. I would like to use sqlite (ultimately mysql). Python 2.7 installed ok. Then I installed (I think) Django 1.2.1. The "manage.py runserver" works, but the "syncdb" fails. How do I "install" sqlite or pysqlite2 (or even mysql)? I