bashrc & zshrc: fix pyenv-install

This commit is contained in:
Mikaela Suomalainen 2014-04-30 21:53:00 +03:00
parent d6a94566c9
commit 8b4248c53c
2 changed files with 2 additions and 2 deletions

2
bashrc
View File

@ -188,7 +188,7 @@ fi
# pyenv (Source: their README.md file http://git.io/ReCDSQ )
export PYENV_ROOT="$HOME/.pyenv"
alias pyenv-install="curl https://raw.github.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash"
alias pyenv-install="\wget -O /tmp/pyenv-installer https://raw.github.com/yyuu/pyenv-installer/master/bin/pyenv-installer;chmod +x /tmp/pyenv-installer;/tmp/pyenv-installer;rm /tmp/pyenv-installer"
alias pyenv-install-alt="cd ~;git clone https://github.com/yyuu/pyenv.git $PYENV_ROOT"
# Sets PATH. To add another path, add :</path/to/new/path> to string below.

2
zshrc
View File

@ -131,7 +131,7 @@ fi
# pyenv (Source: their README.md file http://git.io/ReCDSQ )
export PYENV_ROOT="$HOME/.pyenv"
alias pyenv-install="curl https://raw.github.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash"
alias pyenv-install="\wget -O /tmp/pyenv-installer https://raw.github.com/yyuu/pyenv-installer/master/bin/pyenv-installer;chmod +x /tmp/pyenv-installer;/tmp/pyenv-installer;rm /tmp/pyenv-installer"
alias pyenv-install-alt="cd ~;git clone https://github.com/yyuu/pyenv.git $PYENV_ROOT"
# Sets PATH. To add another path, add :</path/to/new/path> to string below.