We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Assuming a python package is available locally at /path/to/package, then this attempt to install it with pip fails:
/path/to/package
python::pip { 'package': url => '/path/to/package' }
This snippet in pip.pp:
$source = $url ? { false => $pkgname, default => "${url}#egg=${egg_name}", }
causes explicitly specified local urls to have #egg=... appended to them, which causes the install to fail.
It can be worked around by not specifying a url, e.g.:
python::pip{ '/path/to/package': }
but this isn't intuitive.
The text was updated successfully, but these errors were encountered:
Fix via #147 ;)
Sorry, something went wrong.
No branches or pull requests
Assuming a python package is available locally at
/path/to/package
, then this attempt to install it with pip fails:This snippet in pip.pp:
causes explicitly specified local urls to have #egg=... appended to them, which causes the install to fail.
It can be worked around by not specifying a url, e.g.:
but this isn't intuitive.
The text was updated successfully, but these errors were encountered: