how to use pip download package for specific python version
·
rm wheelhouse/ -rf ;
pip download --python-version 3.8.10 -r requirements.txt -d wheelhouse --no-deps --platform=manylinux_2_31_x86_64
pip download -r wk.txt -d wheelhouse --platform=manylinux_2_31_x86_64 --no-deps
--ignore-requires-python
Ignore the Requires-Python information.
--no-deps
Don't install package dependencies.
更多推荐
所有评论(0)