我想下载依赖于windows10的Python包(.whl),Python3.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
救救我请..。
发布于 2019-03-26 08:10:08
它解决了..。就像linux计算机中的代码一样。
pip download package
发布于 2019-03-11 08:47:41
我从here下载了windows版的科学Python包。请确保您从提到的网站安装其他依赖项。
https://stackoverflow.com/questions/55097955
复制