pip3: command not found but python3-pip is already installed
I had a similar issue. In my case, I had to uninstall and then reinstall pip3:
sudo apt-get remove python3-pip
sudo apt-get install python3-pip
You can use python3 -m pip
as a synonym for pip3
. That has saved me a couple of times.