how to download pip dependencies locally?
本问题已经有最佳答案,请猛点这里访问。
我正在运行我的python应用程序,它有包含各种依赖项的
python cf buildback的git repo建议,如果应用程序有一个
我的问题是,如何将我的
您可以使用以下命令获取所有依赖项(当然需要Internet连接)
1 | pip download -r requirements.txt |
然后,可以使用以下命令脱机安装这些依赖项
1 pip install -r requirements.txt --no-index --find-links file:///tmp/packages
--no-index : Ignore package index (only looking at--find-links
URLs instead).
-f, --find-links : If a URL or path to an html file, then
parse for links to archives. If a local path orfile:// URL that's a directory, then look for
archives in the directory listing.
这个答案摘自这篇文章
查看:http://docs.cloudfoundry.org/buildbacks/python/index.html供应商应用程序依赖项
埃多克斯博士
只需使用pip在dev框上安装,然后将其签入。