I started learning DJango for the first time. I have some amount of basic knowledge of python but DJango is first for me. I started with the documentation page of django, bu
SQLite is included with Python 2.5+. You should be able to edit your settings.py file with the relevant database settings (database type and filename, see official docs for details), and your database will then be created upon next running syncdb.
There is a great tutorial on working with virtualenvs and Django at http://bartek.im/blog/2010/07/13/django-environment.html
I also highly recommend virtualenv-burrito to simplify the installation (and updating) process for virtualenv and virtualenvwrapper: https://github.com/brainsik/virtualenv-burrito
If you are still facing issues, do you get any errors when running syncdb at present? If so, what are they?