It seems I dont have some permissions to write files on my server which is strange because I'm a user with all the privileges as the "root" has.
I was editing my /etc/ssh/sshd_config file, adding my user in AllowUsers:
AllowUsers myuser Then I've added the privileges on visudo
# User privilege specification root ALL=(ALL:ALL) ALL myuser ALL=(ALL:ALL) ALL So, What I'm trying to do is install Django using virtualenv but I'm getting this error:
OSError: [Errno 13] Permission denied: '/opt/www/some/myvenv/build' after:
$ source myvenv/bin/activate $ pip install Django==1.6.5 FYI: I'm installing this stuffs in /opt/www/
Any idea to solve this?