pipenv:tldr:eb6cf
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.