pypiのミラーを作る
bandersnatchを使用してpypiミラーを作成します。
数日ほど時間がかかる上、500GiBぐらいディスクを使います。
bandersnatchのインストール
$ virtualenv bandersnatch
$ cd bandersnatch
$ bin/pip install -r https://bitbucket.org/pypa/bandersnatch/raw/stable/requirements.txt
bandersnatch.conf
# ミラーのコピー先
directory = /usr/local/mirror/pypi/
master = https://pypi.python.org
timeout = 10
# worker=1だとすごく時間がかかる
workers = 3
hash-index = false
stop-on-error = false
delete-packages = true
不要なバイナリのコピーをやめる
完全なミラーを作る必要がなく、linuxでだけ使用するのでwin32 …