Skip to content Skip to sidebar Skip to footer

How Do I Set Up Sqlite With A Django Project?

I have read the Django documentation (For reference, https://docs.djangoproject.com/en/1.3/intro/tutorial01/), but I'm still having issues setting up a Django project to work with

Solution 1:

Do a 'sudo apt-get install libsqlite3-dev' and then recompile Python 2.7.

In the long term, to reduce ambiguity of co-existing Python installations and packages, I highly recommend installing pip, virtualenv, and virtualenvwrapper.

Post a Comment for "How Do I Set Up Sqlite With A Django Project?"