-
-
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
Passing -e directory
multiple times attempts to install -e
as a package
#2279
Comments
This makes me wonder why we are parsing this all manually instead of just using a command line flag. I’ve written so much custom handling around this by now it’s actually ridiculous. If it were a command line flag tied to |
IIRC I asked this a while ago, and the answer is the option flag can’t do some things we need. I don’t remember what exactly it is though. Probably need to ask Kenneth. I am certainly +1 for using an |
I feel like I said that and I feel like I was wrong |
Let’s do it then. |
pipenv install -e local/subdir1 -e local/subdir2
fails with an assertion traceback.Version: 2018.05.18
Expected result
That
pipenv install -e local/subdir1 -e local/subdir2
would add both directories toPipfile
as editable installs, similar to the effect ofpip install -e local/subdir1 -e local/subdir2
.Actual result
The second
-e
gets interpreted as a package to try to install, which then fails:Steps to replicate
pip -e local/subdir
The text was updated successfully, but these errors were encountered: