この質問ピップをダウンロードしてパッケージを保存する方法。この式に従えば、Pipはwheel(.whl)ファイルがあればそれをダウンロードします。pipをダウンロードしてソース配布物(車輪ではない)をダウンロードすることを好む
(venv) [[email protected] glances]$ pip download -d wheelhouse -r build_requirements.txt
Collecting wheel (from -r build_requirements.txt (line 1))
File was already downloaded /usr_data/tmp/glances/wheelhouse/wheel-0.29.0-py2.py3-none-any.whl
Collecting pex (from -r build_requirements.txt (line 2))
File was already downloaded /usr_data/tmp/glances/wheelhouse/pex-1.1.18-py2.py3-none-any.whl
Collecting requests (from -r build_requirements.txt (line 3))
File was already downloaded /usr_data/tmp/glances/wheelhouse/requests-2.12.4-py2.py3-none-any.whl
Collecting pip (from -r build_requirements.txt (line 4))
File was already downloaded /usr_data/tmp/glances/wheelhouse/pip-9.0.1-py2.py3-none-any.whl
Collecting setuptools (from -r build_requirements.txt (line 5))
File was already downloaded /usr_data/tmp/glances/wheelhouse/setuptools-32.3.1-py2.py3-none-any.whl
Successfully downloaded wheel pex requests pip setuptools
ダウンロードしたすべてのファイルはホイールですが、別の種類のファイルを取得する場合はどうなりますか?
実際に.whlファイルよりもsdist(.tar.gz)ファイルをダウンロードしたいのですか?ピップに実際にどのようなファイルを入手したいのかを伝える方法はありますか?だから車輪でいっぱいのディレクトリを得るのではなく、たくさんのtar.gzファイルが必要かもしれません。 pip install -h
によると