Ich konnte keine Lösung finden, selbst wenn ich gegoogelt habe, also werde ich es als Erinnerung belassen Ich hoffe, es hilft Menschen, die aufgehört haben, dasselbe zu tun.
Ich habe pyenv installiert und die Version von pyenv auf anaconda usw. umgestellt, aber die Version von Python hat sich nicht geändert
Die folgenden Einstellungen waren in .bash_profile erforderlich
Referenz Einführung in die Python-Zusammenfassung aus der Python3-Serie
before
$ python --version
Python 2.7.10
.bash_profile Einstellungen
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
$ echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
$ source .bash_profile
after
$ python --version
Python 3.5.2 :: Anaconda 4.2.0 (x86_64)