# pyenv

# Version Install

pyenv install 3.7.0

pyenv install --list 
1
2
3

# 環境作成

pyenv virtualenv 3.7.0 new_370
1

# attach

source activate new_370
1