pip3 not working code example
Example 1: pip3 not found
sudo apt-get remove python3-pip; sudo apt-get install python3-pip
Example 2: python pip not working
Correct command:
python -m pip install modulename
Alternative(if it doesn't work):
py.exe -m pip install modulename