mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-22 19:29:22 +01:00
bashrc & zshrc: fix pyenv-install
This commit is contained in:
parent
d6a94566c9
commit
8b4248c53c
2
bashrc
2
bashrc
@ -188,7 +188,7 @@ fi
|
|||||||
|
|
||||||
# pyenv (Source: their README.md file http://git.io/ReCDSQ )
|
# pyenv (Source: their README.md file http://git.io/ReCDSQ )
|
||||||
export PYENV_ROOT="$HOME/.pyenv"
|
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"
|
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.
|
# Sets PATH. To add another path, add :</path/to/new/path> to string below.
|
||||||
|
2
zshrc
2
zshrc
@ -131,7 +131,7 @@ fi
|
|||||||
|
|
||||||
# pyenv (Source: their README.md file http://git.io/ReCDSQ )
|
# pyenv (Source: their README.md file http://git.io/ReCDSQ )
|
||||||
export PYENV_ROOT="$HOME/.pyenv"
|
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"
|
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.
|
# Sets PATH. To add another path, add :</path/to/new/path> to string below.
|
||||||
|
Loading…
Reference in New Issue
Block a user