-
Notifications
You must be signed in to change notification settings - Fork 145
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
Default pip install
behavior?
#21
Comments
This would undermine the concept of Edit: I'm okay with the rest of your proposal. |
@defnull Okay, that makes sense. Thanks for clarifying. |
|
|
Currently,
pip install
outputsYou must give at least one requirement to install (see "pip help install")
. It would be nice to be able to do justpip install
in a directory with aPipfile.lock
and have it recognize and run the installation automatically based on that file. This behavior is identical topip install -p
("when-p
is bare") as described in theREADME
but provides a default forpip install
without needing the-p
flag, likenpm install
. If noPipfile.lock
file is found,pip install
can output its current error message.Additionally, perhaps
pip install
can recognize aPipfile
if there is noPipfile.lock
file, run the install, and generate a correspondingPipfile.lock
file.Thoughts?
The text was updated successfully, but these errors were encountered: