Skip to content

Instantly share code, notes, and snippets.

@ishtaka
Last active September 24, 2018 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ishtaka/5e421cb54c491f3a434c7ddad0af18db to your computer and use it in GitHub Desktop.
Save ishtaka/5e421cb54c491f3a434c7ddad0af18db to your computer and use it in GitHub Desktop.
[Python]環境構築
# install pyenv
brew install pyenv
# install python via pyenv
pyenv install $(pyenv install -l | grep -v - | tail -1)
pyenv rehash
pyenv global $(pyenv install -l | grep -v - | tail -1)
# install pipenv
pip install --upgrade pip
pip install pipenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment