You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
305 B
17 lines
305 B
5 years ago
|
#!/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
|