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