#!/bin/bash ### # @Author: Alvis Zhao # @Date: 2020-08-17 13:41:08 # @LastEditTime: 2020-08-17 13:42:42 # @Description: python环境配置 ### sudo apt update sudo apt install -y python3.8 python-pip sudo tee /etc/pip.conf <<-'EOF' [global] index-url = https://mirrors.aliyun.com/pypi/simple/ EOF