系统环境:树莓派 centos
1. 安装git
yum install -y git
2. 安装pyenv
curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
3. 设置环境变量
vi /etc/profile.d/pyenv.sh
输入
#!/bin/bash
export PATH="/root/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
保存
执行
source /etc/profile.d/pyenv.sh
网友评论