Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Tried installing South sitewide with easy_install. However I'm having permission issues:

drwxr-x---   2 root root   4096 Nov  8 10:23 South-0.7.2-py2.6.egg-info

I then tried installing it with pip but received the same results.

I am assuming I could fix this by just changing the permissions. However, am I doing something wrong during installation? Or is there something wrong with the package?

Answers to comments

iddqd: Please send output. sudo pip install -e hg+http : //bitbucket.org/andrewgodwin/south/

Here is the results:

$ sudo pip-python install -e hg+http://bitbucket.org/andrewgodwin/south/
--editable=hg+http://bitbucket.org/andrewgodwin/south/ is not the right format; it must have #egg=Package
share|improve this question
Paste output of this command: $who am i – iddqd Nov 8 '10 at 15:32
I first ran it using sudo but then tried it again by logging in to root thinking it might of been an environment issue. Same results. – Beaming Mel-Bin Nov 8 '10 at 15:45
1  
Please send output. sudo pip install -e hg+http : //bitbucket.org/andrewgodwin/south/ remove spaces between http : and // – iddqd Nov 8 '10 at 15:51
@iddqd: Answered in edit – Beaming Mel-Bin Nov 8 '10 at 15:59

1 Answer

up vote 3 down vote accepted

It could be your user and/or root have a specific umask which creates files with those permissions such as 0027.

% umask
027
% sudo touch /tmp/foo
% ls -l /tmp/foo
-rw-r-----  1 root  wheel  0 Nov  8 08:19 /tmp/foo
% umask 002
% touch /tmp/bar
% ls -al /tmp/bar
-rw-r--r--  1 root  wheel  0 Nov  8 08:23 /tmp/bar
share|improve this answer
You are correct---umask=027. Thanks. So is there another option for having python libraries installed correctly sitewide other than changing root's umask from 027 to 002? – Beaming Mel-Bin Nov 8 '10 at 18:07
If you install with sudo you inherit whatever umask your user has, not what root's umask is. – dietbuddha Nov 10 '10 at 2:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.