pip3 setup.py install_requires PEP 508 git URL for private repo
问题 I am trying to run: pip3 install -e . in my Python project where I have the following setup.py : from setuptools import setup setup( name='mypackage', install_requires=[ "anotherpackage@git+git@bitbucket.org:myorg/anotherpackage.git" ] ) but it fails with: error in mypackage setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Invalid URL given I guess it is correct about the format of my URL as PEP 508 doesn't allow