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 have private repo package called "some-library" with the setup.py below
setup(
name='some-library',
// Omitted some less important stuff here...
install_requires=[
'another-git-dependency',
],
dependency_links=[
'git+ssh://[email protected]/my-organization/another-git-dependency.git#egg=another-git-dependency',
],
)
I include "git+ssh://[email protected]/my-organization/some-library.git#egg=some-library" in a requirements.txt file on another project and "pip install -r requirements.txt" .
I got the following error :
Collecting some-library git+ssh://[email protected]/my-organization/some-library.git#egg=some-library
Cloning ssh://[email protected]/my-organization/some-library.git to /tmp/tmpsnQ9iApycharm-packaging/some-library
Collecting another-git-dependency (from some-library)
Could not find a version that satisfies the requirement another-git-dependency (from some-library) (from versions: )
No matching distribution found for another-git-dependency (from some-library)
The text was updated successfully, but these errors were encountered:
I have private repo package called "some-library" with the setup.py below
I include "git+ssh://[email protected]/my-organization/some-library.git#egg=some-library" in a requirements.txt file on another project and "pip install -r requirements.txt" .
I got the following error :
The text was updated successfully, but these errors were encountered: