Skip to content

Instantly share code, notes, and snippets.

@songpon
Created February 17, 2017 16:29
Show Gist options
  • Save songpon/7b62445160b0344e322f7d2b56a3b5be to your computer and use it in GitHub Desktop.
Save songpon/7b62445160b0344e322f7d2b56a3b5be to your computer and use it in GitHub Desktop.
#!/bin/bash
# install vim .bash
git clone https://github.com/amix/vimrc.git ~/.vim_runtime
sh ~/.vim_runtime/install_awesome_vimrc.sh
# install pyenv
curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
# set to .bashrc
echo 'export PATH="$HOME/.pyenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(pyenv init -)"' >> ~/.bashrc
echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bashrc
source ~/.bashrc
# install python version
pyenv install -v 3.6.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment