Re: django-admin.py startproject myproject - problem

2011-01-15 Thread Piotr Kilczuk
sudo apt-get install python-django > will install django in kubuntu (10.10 at least, and I think earlier). > Hi, You should be also able to do: sudo pip install Django --upgrade which would do a system-wide installation or upgrade of newest Django available in PyPI (ie. 1.2.4). I prefer pip ov

Re: django-admin.py startproject myproject - problem

2011-01-15 Thread Casey S. Greene
It looks like django is not in your site packages directory. Did you specifically want to install the development version (that is what you linked to)? If not, then a simple: sudo apt-get install python-django will install django in kubuntu (10.10 at least, and I think earlier). Hope this h

django-admin.py startproject myproject - problem

2011-01-15 Thread dev.demi
When I run in my console django-admin.py startproject myproject I get next messages Traceback (most recent call last): File "/usr/local/bin/django-admin.py", line 2, in from django.core import management ImportError: No module named django.core I followed steps in docs: http://docs.djangop