Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to download python dependencies for a case where a system doesn't have network access. If I perform the downloads on my mac without specifying the platform and only-binary everything works fine. However, if I specify --only-binary:all: and --platform any, it gives me an error that it can't find distributions (like pandas). Do I need to run this on a windows machine for it to work? What am I doing wrong?

I have been referencing the pip download info: https://pip.pypa.io/en/stable/reference/pip_download/

py -m pip download ^
   --only-binary=:all: ^
   --platform any ^
   --python-version 3 ^
   --implementation py ^
   --abi none ^
   SomePackage

Works:

python -m pip download -d ./packages pandas -r requirements.txt

Doesn't work:

python -m pip download --only-binary=:all: --platform any --python-version 3 -d ./packages pandas -r requirements.txt

Error:

ERROR: Could not find a version that satisfies the requirement pandas (from versions: none)
ERROR: No matching distribution found for pandas

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
763 views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...