pipenv uninstall [package]
Uninstalls a provided package and removes it from Pipfile
Arguments
Name | Description |
---|
package | Package to uninstall |
Options
Name | Description |
---|
--all-dev | Uninstall all package from [dev-packages] |
--all | Purge all package(s) from virtualenv. Does not edit Pipfile |
-e, --editable <path> | An editable Python package URL or path, often to a VCS repository |
--skip-lock | Skip locking mechanisms and use the Pipfile instead during operation |
-d, --dev | Install both develop and default packages |
--keep-outdated | Keep out-dated dependencies from being updated in Pipfile.lock |
--pre | Allow pre-releases |
--python <py_version> | Specify which version of Python virtualenv should use |
--three | Use Python 3 when creating virtualenv |
--two | Use Python 2 when creating virtualenv |
--clear | Clears caches (pipenv, pip, and pip-tools) |
-v, --verbose | Verbose mode |
--pypi-mirror <mirror url> | If you would like to override the default PyPI index URLs with the URL for a PyPI mirror |