Answers for "how to uninstall package in python"

30

pip remove

# python2
pip uninstall package_name
# python3
pip3 uninstall package_name
Posted by: Guest on May-02-2020
7

pip remove package

pip uninstall <package_name>
Posted by: Guest on September-16-2020

Code answers related to "how to uninstall package in python"

Python Answers by Framework

Browse Popular Code Answers by Language