Forrest logo
back to the pipenv tool

pipenv:tldr:eb6cf

pipenv: Uninstall a package.
$ pipenv uninstall ${package_name}
try on your machine

The command "pipenv uninstall" is used to remove a package from a Python virtual environment managed by Pipenv.

Specifically, the command "pipenv uninstall ${package_name}" uninstalls the package with the specified name from the current Pipenv environment. By replacing "${package_name}" with the actual name of the package you want to remove, you can uninstall that package and any dependencies associated with it.

For example, if you want to uninstall a package called "requests" from your Pipenv environment, you would use the command: "pipenv uninstall requests". This command will remove the package and any dependencies that are no longer needed.

It's important to note that this command modifies the Pipfile and Pipfile.lock files in your project's directory, ensuring that the package is no longer listed as a dependency in the configuration files.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the pipenv tool