pip:依赖链接通过命令行

时间:2017-11-08 09:12:35

标签: python git ssh pip

我想运行一个setup.py,它定义了几个依赖链接,即:

dependency_links=[
    "git+ssh://git@my.gitlab/myproject1.git@v1.4.0#egg=myproject1-1.4.0",
    "git+ssh://git@my.gitlab/myproject2.git@v0.2.0#egg=myproject2-0.2.0",
]

我的问题是,在运行pip install命令时是否有办法通过命令行传递此数组,如下所示(例如):

RUN pip install numpy==1.10.1 \
&& pip wheel --find-links="wheelhouse/" --wheel-dir="wheelhouse/" uwsgi \
&& pip wheel --find-links="wheelhouse/" --wheel-dir="wheelhouse/" --process-dependency-links gitlablink1, gitlablink2 .

0 个答案:

没有答案