pipenv
pipenv copied to clipboard
Python Development Workflow for Humans.
### Issue description I want to use pipenv to install dependencies in a python container without creating new virtual environments. Using `pipenv install --system --python /usr/local/bin/python --site-packages` creates a new...
### Issue description When configured to use certain private repositories, pipenv will fail during the dependency-locking step on systems without internet access, reporting it couldn't reach pypi.org (instead of the...
### Issue description I have a private repository configured in my Pipfile, which specifies credentials via environment variables in the manner described in the pipenv user guide: ``` [[source]] url...
### Issue description When the script is run with `pipenv run` command, the actual arguments containing "&" sign go to the script without quotes: pipenv run somescript.py --argument "with_&_sign". ###...
I've looked through the docs and the cli, but cannot seem to find a way to save the version of the installed package explicitly without editing the Pipfile after installing...
### Issue description `python -m pipenv install` will raise an Error while traversing directories if a subdirectory cannot be accessed. The `install` process fails. ### Expected result `python -m pipenv...
This adds error handling around badly formed python specifiers which pip happily installs the packages for, and the resolver spits out whatever is in the setup.py, however it will be...
### Issue description I have a Pipfile that specifies a stable version of a package for production and an editable local version of a package for development. These differences are...
I am proposing via PR we remove the flag `--selective-upgrade` on several grounds: * It doesn't work and hasn't for a long time * The suggestion for people using it...