diff --git a/bashrc b/bashrc index fcc0c39f..1d02ccd2 100644 --- a/bashrc +++ b/bashrc @@ -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 : to string below. diff --git a/zshrc b/zshrc index 270369e5..67e896be 100644 --- a/zshrc +++ b/zshrc @@ -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 : to string below.