-
-
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
Cannot install editable package #1133
Comments
This one was actually fixed in #958, but if you want to install using absolute paths you should use |
using latest release (8.3.2) i can confirm that the problem still exists, i was about to report this problem when i found @eugenma has already post this issue, whether using
but anyway, it already fixed on master 🎉 |
@chenull pipenv version 9.0 has been released with this fix, so I'm going to close this issue -- let us know if there is any further problem! |
I wanted to install a package on a local drive as an editable package under Windows:
Describe your environment
Expected result
the package is listed in Pipfile and
myproject
finds themypackage
dependencyActual result
The following error occurs:
Solution
I checked the code in
pyenv/utils.py
and at the line 547, i.e. around:the error occurs because
req.name
isNone
. Hence the simple solution is check as forreq.path
:At least on my pc it worked. The Pipfile looks as follows after installing the editable package:
[packages]
...
django = "==1.10.5"
"-e d:\projects\djangoapps\mypackage" = "*"
The text was updated successfully, but these errors were encountered: