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
Do not use sudo with virtualenv this is the easiest way to multiple problems later.
Begin by installing virtualenv - sudo apt-get install python-virtualenv
Next, as your normal user run the following commands:
$ virtualenv --no-site-packages django-env$ source django-env/bin/activate(django-env)$ pip install django(django-env)$ django-admin.py startproject myproject(django-env)$ cd myproject(django-env)/myproject$ nano settings.pysettings.py, after 'ENGINE:' type 'django.db.backends.sqlite3', (don't forget the comma)settings.py, after the 'NAME:' type 'site.db', (again, don't forget the comma)(django-env)/myproject$ python manage.py syncdb