Comment le programme d'installation de python chemin de 2.7 sur mac?

Je suis conscient que, cette question a été posée et a répondu à de nombreuses reprises. Mais, là encore, je ne pouvais pas me débarrasser de ce. J'ai trouvé les informations suivantes sur mon mac.

cd /Library/Frameworks/Python.framework/Versions/
Current -> 2.7
3.6

whereispython
/usr/bin/python

which python
/usr/bin/python

which -a python
/usr/bin/python
/usr/bin/python

python
Python 2.7.10 (default) 
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

Même si, quand j'ai modifier ~/.bash_profile comme ci-dessous

# Setting PATH for Python 2.7
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export PATH

#PYTHONPATH
PYTHONPATH="${PYTHONPATH}:/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python"
export PYTHONPATH

Puis, source ~/.bash-profile. Après le redémarrage de mon mac & terminal, pourrait voir encore /usr/bin/python au lieu de pointer vers /Library/../Python2.7 lors de l'exécution which python.

J'ai désinstallé python et ré-installé "pip install python"
Et aussi, j'ai pu voir python installé sous /System/Library/Frameworks/Python.framework/Versions

2.6
2.7
2.5 -> 2.6
2.3 -> 2.6
Current -> 2.7

Je ne suis pas sûr de ce que pourrait être absent ici. Comment puis-je mettre/ajouter le python path dans mac ? Merci de m'aider à comprendre et à surmonter cela. Pouvez-vous svp m'aider ici ?

Référence L'ajout de python chemin pour mac osx

Pourquoi ne pas utiliser quelque chose comme pyenv?
Le Type qui python2.7; 'ls /usr/bin | grep python

OriginalL'auteur Diesel Kumar | 2017-08-12