安装pyenv
自动安装
1 | curl https://pyenv.run | bash |
完成后需要添加到shell环境
~/.bashrc
1 | echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc |
~/.profile
1 | echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.profile |
~/.bash_profile
1 | echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile |
刷新shell
1 | exec $SHELL |