So i want to do some Python dev, using Django. I found this video and watched it a few times to try and get started.
http://net.tutsplus.com/tutorials/pytho ... c-website/
I've installed a Ubuntu Server using this "Security, PostgreSQL/MySQL/MongoDB, Apache, Django" Linode Stack Script. ...
http://www.linode.com/stackscripts/view ... riptID=131
However, I'm totally stuck and need help. my site
http://yozomo.com/ is working so you'd assume everything is working fine. DB installed, Python and Django installed however, on the "django step" for making an app..
python manage.py startapp whiskey...
I get this...
benjamin@thallium:/srv/website/app/webapp$ python manage.py startapp whiskey
Traceback (most recent call last):
File "manage.py", line 2, in <module>
from django.core.management import execute_manager
ImportError: No module named django.core.management
ALSO this seems to be an error...
benjamin@thallium:/srv/website/app/webapp$ python
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.
>>> from django import get_version
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named django
If anyone can offer help and the next step i'm totally missing please help.
Thanks!