pipenv
pipenv copied to clipboard
Python Development Workflow for Humans.
Be sure to check the existing issues (both open and closed!), and make sure you are running the latest version of Pipenv. Check the [diagnose documentation](https://pipenv.pypa.io/en/latest/diagnose.html) for common issues before...
### Issue description I am trying to install mach.py with pipenv but it fails: ### Expected result The package mach.py should not raise an exception. ### Actual result ``` $pipenv...
### Issue description Starting from a clean slate, with a dir containing only a single `Pipfile` with a single VCS dependency, running `pipenv install --skip-lock` fails with the error: >[pipenv.exceptions.InstallError]:...
### Issue description When running pipenv in Ubuntu 22.04.4 LTS on Windows 10 x86_64 using WSL2, `pipenv run` fails to execute built-in commands that don't provide a path from `which...
### Issue description Trying to install a package over https, from a *private* AWS CodeCommit repo, on an Ubuntu system. Instead of using git `credential.helper`, we would like to [inject...
### Issue description When add a local git repository as dependency, it will cause resolution failure. Here is the `Pipfile` ``` [[source]] url = "https://pypi.org/simple" verify_ssl = true name =...
I have been using `pipenv 2022.9.21` for a long time and decided to try the latest and greatest. The latest `2024.0.1` appears broken when it comes to locating packages in...
### The issue Fixes Issue #6189 It would appear my refactor to the behavioral install changes in `2024.0.1` broke the `--skip-lock` flag. ### Before change ``` $ pipenv install --skip-lock...
### Issue description Running `pipenv uninstall --all` (the command) with the latest version of pipenv uninstalls all packages in the `[packages]` group and removes them from the Pipfile. It doesn't...
### The issue Fixes #6221 ### The fix Local file installs were not considering if user wanted it marked editable. This was a regression, that seems like it has been...