-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Pipenv does not support installing from local source packages #817
Comments
techalchemy
added a commit
to techalchemy/pipenv
that referenced
this issue
Oct 2, 2017
* Fixes pypa#817 * Packages werent being identified as local files * Therefore they were not being given a path * We were trying to resolve them with pypi
techalchemy
added a commit
to techalchemy/pipenv
that referenced
this issue
Oct 10, 2017
Signed-off-by: Dan Ryan <[email protected]>
techalchemy
added a commit
to techalchemy/pipenv
that referenced
this issue
Oct 23, 2017
* Issues - pypa#949, pypa#939, pypa#936 and to a lesser extent pypa#817 pypa#540 and more * Fixed: Local file path installation (resolves in pipfile as relative path) * Pass file:// URI to Requirements library for resolving TODO: * Ignore non-explicit directory paths lacking os.sep or ./ * Add tests
This was referenced Oct 23, 2017
techalchemy
added a commit
to techalchemy/pipenv
that referenced
this issue
Nov 14, 2017
* Issues - pypa#949, pypa#939, pypa#936 and to a lesser extent pypa#817 pypa#540 and more * Fixed: Local file path installation (resolves in pipfile as relative path) * Pass file:// URI to Requirements library for resolving TODO: * Ignore non-explicit directory paths lacking os.sep or ./ * Add tests
techalchemy
added a commit
to techalchemy/pipenv
that referenced
this issue
Nov 14, 2017
This is now properly fixed in #958 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I created a virtualenv with pipenv, and installed some required packages from PyPI with it, which works well. However, I also have in my project a Python source distribution tarball (created by running
python setup.py sdist
in another project), that I'd like to install in the virtualenv. When runningpipenv install mytarball.tar.gz
, the source tarball is successfully installed in the virtualenv, but then I get an error at the end of the process:The text was updated successfully, but these errors were encountered: