Installiere pyenv & setze den Pfad
$ anyenv install pyenv
$ echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
$ source ~/.bash_profile
Python-Installation
#Installable Ver.Bestätigung von
$ pyenv install --list
#Installieren Sie den neuesten Stabilisator
$ pyenv install 3.6.1
#Installierte Ver.Zu global
$ pyenv global 3.6.1
$ pyenv versions
system
* 3.6.1
Python-Funktionsprüfung
$ python
Python 3.6.1 (default, Apr 20 2017, 11:16:55)
[GCC 4.2.1 Compatible Apple LLVM 8.1.0 (clang-802.0.42)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
Recommended Posts