如何在windows上下载带有依赖项的linux .whl文件

问题描述 投票:0回答:2

我想下载Linux_x86_64 Python包(.whl),依赖于Windows 10,Python 3.6.8版本。像那样:

pip download 
--only-binary=:all: 
--platform linux_x86_64 
--python-version 35 
--implementation py 
--abi none 
-d "C:\my\download\folder" 
pandas

但它需要一个错误:

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

请帮帮我...

python download pip
2个回答
0
投票

它解决了......就像linux计算机中的这段代码一样。

pip download package

-1
投票

我从here下载用于Windows的科学Python包。请确保从所提到的站点安装其他依赖项。

© www.soinside.com 2019 - 2024. All rights reserved.