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.
21 Answer
You can simply run pipenv uninstall package1 package2 package3, and pipenv will uninstall those packages from your virtual environment.