2

easy_installを使用してサイト全体にSouthをインストールしてみました。ただし、権限の問題があります。

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

次に、 pipを使用してインストールしようとしましたが、同じ結果が得られました。

権限を変更するだけでこれを修正できると思います。しかし、インストール中に何か問題がありますか?または、パッケージに何か問題がありますか?

コメントへの回答

iddqd:出力を送信してください。sudo pip install -e hg + http://bitbucket.org/andrewgodwin/south/

結果は次のとおりです。

$ 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
4

1 に答える 1

6

ユーザーやrootが、umaskなどの権限を持つファイルを作成する特定のユーザーである可能性があります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
于 2010-11-08T16:24:31.243 に答える