-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to install private GitHub repo as pip package. #197
Comments
possibly relating to this issue here: 187 |
FWIW, I've found something of a workaround for now. An example from my own code: dependencies:
- python
- pip:
- pymatbridge @ https://github.com/arokem/python-matlab-bridge/archive/51c0e79aa6ecb9ae11d02ad367c1bfa0b27c2caa.zip#sha256= The A lot of disclaimers, as you see. :) |
Requesting this as well. We're using conda-lock and would love to be able to easily manage our private pip dependencies with it 👍 |
As @ovidner alluded to, this is not only an issue with private repos; it seems to affect all pip packages installed through git. |
I ran into exactly the same problem |
Support for |
Hi there,
I am trying to perform
conda lock -p osx-64 -p osx-arm64 -p linux-64 -p linux-aarch64 -f environment.yml --filename-template 'x-{platform}.lock'
with an evironment.yml file like so that contains a private pip package hosted in a private GitHub repo:But I get the error
pkg_resources.extern.packaging.requirements.InvalidRequirement: Parse error at "'+ssh://g'": Expected string_end
.I can easily install the private repo by running the normal
conda env create --prefix ./env -f environment.yml
. So just wondering what I'm doing wrong here :)The text was updated successfully, but these errors were encountered: