Mise à jour de pip3 pour Python 3.6?

J'ai juste mis à niveau à partir de Python Python 3.4 3.6 utilisation du Homebrew.

Les états de sortie:

Pip, setuptools, and wheel have been installed. To update them
  pip3 install --upgrade pip setuptools wheel
You can install Python packages with
  pip3 install <package>
They will install into the site-package directory
  /usr/local/lib/python3.6/site-packages

J'ai essayé d'exécuter

pip3 install --upgrade pip setuptools wheel

Mais il ne fait pas de mise à niveau de pep pour Python 3.6. Au lieu de cela, il trouve pip3 en Python 3.4 et dit à l'exigence de satisfaction":

Requirement already up-to-date: pip in /Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages
Collecting setuptools
  Downloading setuptools-33.1.1-py2.py3-none-any.whl (472kB)
    100% |████████████████████████████████| 481kB 1.0MB/s 
Collecting wheel
  Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB)
    100% |████████████████████████████████| 71kB 5.7MB/s 
Installing collected packages: setuptools, wheel
  Found existing installation: setuptools 12.0.5
    Uninstalling setuptools-12.0.5:
      Successfully uninstalled setuptools-12.0.5
Successfully installed setuptools-33.1.1 wheel-0.29.0

Lorsque je vérifie le pip version, il est en Python 3.4, pas 3.6. Comment puis-je résoudre ce problème?

$ pip3 -V
pip 9.0.1 from /Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages (python 3.4)

OriginalL'auteur user2989813 | 2017-01-17