- 解决Linux快速安装Python3.7环境问题
- 包含Anaconda3 依赖安装,方便快捷
- 设置默认阿里云镜像,方便pip install 安装
#安装依赖
yum install -y bzip2
#下载Anaconda3
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.3.0-Linux-x86_64.sh
#下载完成后给可执行权限
chmod 777 Anaconda3-5.3.0-Linux-x86_64.sh
#安装
./Anaconda3-5.3.0-Linux-x86_64.sh
#配置环境变量
vim ~/.bashrc
export PATH=/home/user/anaconda3/bin:$PATH #添加一行 默认会安装在你的家目录下,替换掉家目录安装路径即可
source ~/.bashrc
#测试命令行输入,可以进入交互式环境即表示安装成功:
Python3
#配置pip安装国内镜像,方便下载Python第三方包
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip config set install.trusted-host mirrors.aliyun.com