_ Prerequisite
_ Install&Setup
- Step.1
- Download pyenv from Github.
$ git clone https://github.com/yyuu/pyenv.git ~/.pyenv
- Step.2
- Edit .bash_profile
export PYENV_ROOT=$HOME/.pyenv
export PATH=$PYENV_ROOT/bin:$PATH
eval "$(pyenv init -)"
- Step.3
- Load .bash_profile
$ source ~/.bash_profile
_ HowToUse
- Step.1
- Check the installed python's version
$ pyenv versions
- Step.2
- Check what modules you can install additionally.
$ pyenv install --list
- Step.3
- Install modules.
$ pyenv install 3.0.1
_ Author
S.Yatsuzuka