我正在尝试收集文件以供文件夹的脱机安装。
在一台机器上,我做了pip download -r requirements.txt -d wheelhouse
,其中wheelhouse
是我所有的目录。
然后我将Wheelhouse目录移至远程计算机(无网络访问权限)。我在那台机器上安装了miniconda。如何使用一个swift命令安装该目录中的所有whl文件?
此外,每当我甚至尝试安装单个文件(pip install {path to.whl file}
)时,我都会得到
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1056)'))) - skipping
但是我不想从在线存储库中获取它,因为它已经在该计算机上。
帮助表示感谢!
答案 0 :(得分:0)
移动wheels文件夹并从那里安装
pip install --no-index --find-links=wheels/ -r tf-requirements.txt