[PYTHON] [Hinweis] Festlegen von .bash_profile nach der Installation von pyenv

Einführung

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.

Veranstaltung

Ich habe pyenv installiert und die Version von pyenv auf anaconda usw. umgestellt, aber die Version von Python hat sich nicht geändert

Bewältigung

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)

Recommended Posts

[Hinweis] Festlegen von .bash_profile nach der Installation von pyenv
pyenv note
Nach der Installation von Linux
Installation von pyenv unter Ubuntu 16.04
[Python] Anaconda, pyenv, virtualenv, .bash_profile