Join my Laravel for REST API's course on Udemy 👀

Removing packages with pipenv

June 25, 2022  ‐ 1 min read

If you are already familiar with uninstalling packages with pip, then removing packages from your virtual environment with pipenv should look familiar.

To remove a package from our virtualenv with pipenv we run the uninstall command:

$ pipenv uninstall http

We can uninstall multiple packages at once with pipenv in the same way, by listing out the other packages to remove:

$ pipenv uninstall http django flask