I\'ve install Python 3.4 and Python 3.6 on my local machine successfully, but am unable to install packages with pip3.
pip3
When I execute pip3 install
pip3 install
If you are on OSX and in case the other solutions didn't work for you (just like me).
You can try uninstalling python3 and upgrade pip3
brew uninstall --ignore-dependencies python3 pip3 install --upgrade pip
This worked for me ;)