how to uinstall a package in python

Solutions on MaxInterview for how to uinstall a package in python by the best coders in the world

showing results for - "how to uinstall a package in python"
Phoenix
07 Oct 2017
1# INSTALLING A PACKAGE 
2pip install <package>
3
4# UINSTALLING A PACKAGE 
5pip uninstall <package>
6
7# UPDATING A PACKAGE 
8pip install --upgrade --user <package>