Is it possible to do an offline installation of a package with a dependency link, e.g.:
setup(
name='package',
...
install_requires=[
'<dependency> @ git+ssh://git@github.com/<user>/<repo_name>@<branch>'
],
)
I'd like to add this into a package I am creating, but it seems to cause problems when installing while offline. For some reason pip still attempts to connect to the repo even if the dependency is already installed.
Is using the --no-deps option the only way to install this package offline?