You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pip install --no-index --find-links=/local/wheels -r requirements.txt command works well if all dependencies in the requirements.txt are in the format of PyPI requirement specifiers:
flask
requests
But if any dependency in the requirements.txt is in the form of VCS project url, which is reasonable for non-PyPI or development-version packages. Like this:
The pip install command will download packages by cloning their repositories (as the pip wheel command has done), instead of using the local wheels.
How to fix it?
The text was updated successfully, but these errors were encountered:
RussellLuo
changed the title
How to install local wheels whose requirement specifier is a VCS project url?
How to install local wheels whose requirement specifier are VCS project urls?
Oct 15, 2015
RussellLuo
changed the title
How to install local wheels whose requirement specifier are VCS project urls?
How to install local wheels whose requirement specifiers are VCS project urls?
Oct 15, 2015
From the documentation, I learned this:
The
pip install --no-index --find-links=/local/wheels -r requirements.txt
command works well if all dependencies in therequirements.txt
are in the format of PyPI requirement specifiers:But if any dependency in the
requirements.txt
is in the form of VCS project url, which is reasonable for non-PyPI or development-version packages. Like this:The
pip install
command will download packages by cloning their repositories (as thepip wheel
command has done), instead of using the local wheels.How to fix it?
The text was updated successfully, but these errors were encountered: