How do you uninstall multiple packages with pipenv?

I have ended up installing multiple Azure packages that I don't need. I have seen solutions of how to uninstall them using pip but not with pipenv. Here's a sample of the packages I'd like to remove (there's about 60 packages):

azure-mgmt-advisor==1.0.1 azure-mgmt-applicationinsights==0.1.1 azure-mgmt-authorization==0.50.0 azure-mgmt-batch==5.0.1 

I am new to python (and consequently to pipenv). Would appreciate any help offered.

2

1 Answer

You can simply run pipenv uninstall package1 package2 package3, and pipenv will uninstall those packages from your virtual environment.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like