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
I would like to install dependencies from local paths/git repositories without specifying the exact path as part of the package. I figure, that --find-links can be used to provide the necessary paths when installing. The doc says
If a local path or file:// url that's a directory, then look for archives in the directory listing.
Not sure if this mean I really would have to package the dependencies.
Requirements.txt works
I can install dependencies via pip install -r requirements.txt from local directories or bare git repositories using
Description:
I would like to install dependencies from local paths/git repositories without specifying the exact path as part of the package. I figure, that
--find-links
can be used to provide the necessary paths when installing. The doc saysNot sure if this mean I really would have to package the dependencies.
Requirements.txt works
I can install dependencies via
pip install -r requirements.txt
from local directories or bare git repositories usingor
--find-links does not work
I would assume that the same thing should be possible via
install_requires='mypackage'
in setup.py andor
Unfortunately none of these works ("No matching distribution found for mypackage").
The documentation on
--find-links
is bit short and I don't know if this is supposed to work or if I would have to adapt my call.The text was updated successfully, but these errors were encountered: