2020-11-02 04:08:18 +00:00
|
|
|
#!/bin/sh
|
2020-09-22 01:52:02 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# install python3.8
|
|
|
|
sudo add-apt-repository ppa:deadsnakes/ppa
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install python3.8
|
|
|
|
|
|
|
|
# install pip and other distutils
|
|
|
|
sudo apt install python3.8-distutils
|
|
|
|
sudo python3.8 -m pip install --upgrade pip setuptools wheel
|