Skip to content

Instantly share code, notes, and snippets.

@wheelq
Forked from ysaotome/install_pyenv.sh
Created August 23, 2019 11:57
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 wheelq/02432eb55af5185f7f103dc00e78ce55 to your computer and use it in GitHub Desktop.
Save wheelq/02432eb55af5185f7f103dc00e78ce55 to your computer and use it in GitHub Desktop.
pyenv install for CentOS 6.5 x86_64
#!/bin/zsh
# pyenv install for CentOS 6.5 x86_64
yum install -y gcc gcc-c++ make git patch openssl-devel zlib-devel readline-devel sqlite-devel bzip2-devel
git clone git://github.com/yyuu/pyenv.git ~/.pyenv
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
cat << _PYENVCONF_ >> ~/.zshrc
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
_PYENVCONF_
pyenv install 2.7.6
pyenv versions
pyenv shell 2.7.6
pyenv global 2.7.6
pyenv versions
pyenv rehash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment