How can I add dependency link to repo subdirectory in setup.py
问题 I have following two repositories: one classic with setup.py, and second which looks like: /repo /folder1 /folder2 /utils /setup.py and in setup.py in first repo I want install utils from second repo. I tried following code: install_requires=["repo"], dependency_links=['git+ssh://git@bitbucket.aaaaaaa.aa:0000/project/repo@master#egg=repo&subdirectory=folder2'] but after python setup.py develop I have following error: unknown url type: git+ssh -- Some packages may not be found! 回答1: I had the