On Sun, Oct 04, 2009 at 10:43:11AM -0700, Leke wrote:
> I still seem to have no luck running the script though...
> 
> l...@leke ~/Projects/cms/django $ /usr/lib/python-django/bin/django-
> admin.py startproject mysite
> bash: /usr/lib/python-django/bin/django-admin.py: Permission denied

The script seems to be missing the x bits for execution.
Try
    $ python /usr/lib/python-django/bin/django-admin.py startproject mysite

or set the x bits with
    $ sudo chmod a+x /usr/lib/python-django/bin/django-admin.py
and check the first line of the script if it has a valid hash bang line.

    \Maex

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to