Technicalbard wrote:
> OK - newb here (in more ways than one).  I'm trying to get going on an
> Ubuntu VM (inside VirtualBox) and I installed Django via synaptic.
> 
> The problem comes when I try to start the tutorial:
> 
> mor...@morgan-laptop:~/www$ django-admin startproject mysite
> Error: [Errno 13] Permission denied: '/home/morgan/www/mysite'
> 
> I made sure that I have ownership of the /www folder (as opposed to
> root having ownership), but that didn't make a difference.

This is not the /www directory, but the /home/morgan/www/ directory.
You do not need ownership (although it is customary of directories under
your home directory), but write permission.

Execute
sudo chown morgan ~/www
sudo chmod 755 ~/www

If there are any files in ~/www, such as an existing 'mysite' directory,
delete them.

HTH,

-- 
Jochem Berndsen | joc...@functor.nl
GPG: 0xE6FABFAB

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

Reply via email to