how to how to uninstall al python packages at once in a specific oython bersion code example
Example 1: pip remove
# python2
pip uninstall package_name
# python3
pip3 uninstall package_name
Example 2: pip remove package
pip uninstall <package_name>