Skip to content

Instantly share code, notes, and snippets.

@kenzo0107
Last active April 29, 2020 02:40
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 kenzo0107/ac0c5a56ecfb930a7c5fdb83dcf4ec26 to your computer and use it in GitHub Desktop.
Save kenzo0107/ac0c5a56ecfb930a7c5fdb83dcf4ec26 to your computer and use it in GitHub Desktop.

Install anyenv

$ git clone https://github.com/anyenv/anyenv ~/.anyenv
$ echo 'eval "$(anyenv init)"' >> ~/.your_profile

// reload your configuraiton of shell
$ exec $SHELL -l

setup anyenv plugin

$ mkdir -p ~/.anyenv/plugins
$ git clone https://github.com/znz/anyenv-update.git ~/.anyenv/plugins/anyenv-update

install goenv via anyenv

// install goenv 
$ anyenv install goenv
$ goenv -v # => goenv 2.0.0beta11
$ echo 'export PATH=$PATH:$GOPATH/bin' >> ~/.your_profile
$ exec $SHELL -l
$ goenv install 1.14.2
$ goenv local 1.14.2
$ goenv rehash
$ go env GOPATH
/Users/yourhome/go/1.14.2

install pyenv via anyenv

anyenv install pyenv
exec $SHELL -l
pip install --upgrade awscli
pip install --user aws-sam-cli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment