Fully support pip options on install
See original GitHub issueFirst, thanks for great project 👍
The main thing stopping me from using it is its’ support for pip install
.
Currently, pipenv
is parsing arguments for install
and then recreating the pip
argument string from them (pip_install
).
This allows it to support its own options, but means pip compatibility is limited - e.g. installing in editable mode (-e
) or installing from VCS.
It would be possible to support all pip install
options by simply forwarding unknown options on pipenv install
to pip install
(http://click.pocoo.org/5/advanced/#forwarding-unknown-options). This would also mean no development required to support future pip changes.
Is that feasible?
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
pip install - pip documentation v22.3.1
Description#. Install packages from: PyPI (and other indexes) using requirement specifiers. VCS project urls. Local project directories.
Read more >Using Python's pip to Manage Your Projects' Dependencies
Using the pip install command with the -e flag is just one of many options that pip install offers. You can check out...
Read more >Installing Packages - Python Packaging User Guide - Python.org
pip can install from either Source Distributions (sdist) or Wheels, but if both are present on PyPI, pip will prefer a compatible wheel....
Read more >Picture-in-picture (PiP) support - Android Developers
How users can interact with the PiP window · Single-tap the window to display a full-screen toggle, a close button, a settings button,...
Read more >python - What does pip install ".[full]" do? - Stack Overflow
From your current folder . , there is probably a file setup.py . In this file you have some extra options. One of...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@benkuhn All pip arguments can be specified as environment variables. You can set
PIP_ROOT
for--root
, for example. Related documentation: https://pip.pypa.io/en/stable/user_guide/#environment-variablesWow, thanks for the tip! Don’t know how I missed that in the Pip docs 😃