- To install a Python module, at the command prompt type
python -m pip install [package name]
replace [package name] with the name of the package and press enter.
And…
- To uninstall a Python module, at the command prompt type
python -m pip uninstall [package name]
replace [package name] with the name of the package and press enter.
Rickey Estes