非公開リポジトリのパッケージをインストールするのは難しい 自社のプライベートプロジェクトを別のプロジェクトから利用したい場合、簡単にpipやeasy_installでインストールできず困ることがある。 例えば https://github.com/oyakata/foo https://github.com/oyakata/bar と2つのプロジェクトをプライベートにして、barからfooをインストールしようとすると結構難しい。 一番確実な方法はfooをcloneしてfooのsetup.py developを実行することだろう(以下) $ git clone https://github.com/oyakata/bar.git $ cd bar $ virtualenv . $ . ./bin/activate (bar) $ pushd .. (bar) $ git clone clon