When trying something like this: pip install -e git+https://github.com/OpenSourceBrain/OSB_API.git@master#egg=PyOSB&subdirectory=python in a requirement file to install osb_api as a dependency, getting this error:
IOError: [Errno 2] No such file or directory: '~/src/pyosb/setup.py'
This is due to the fact that pip can not install from git, if there is no setup.py in the root directory.
Although it is possible to add &subdirectory=python to the end, but again getting this error:
error: package directory 'osb' does not exist
When trying something like this:
pip install -e git+https://github.com/OpenSourceBrain/OSB_API.git@master#egg=PyOSB&subdirectory=pythonin a requirement file to install osb_api as a dependency, getting this error:IOError: [Errno 2] No such file or directory: '~/src/pyosb/setup.py'This is due to the fact that pip can not install from git, if there is no setup.py in the root directory.
Although it is possible to add
&subdirectory=pythonto the end, but again getting this error:error: package directory 'osb' does not exist