I'm going to build an image for the students laptops, so we need to collate a list of required software, at the moment I have:
- Ubuntu 20.04.1 LTS
- Python (Ubuntu 20.04.1 comes with 3.8 as standard, is this sufficient?)
- python pip (
sudo apt install -y python3-pip)
- python venv (
python3-venv)
- build-essential and python3 dev libraries just in case (
sudo apt install build-essential python3-dev)
- VSCode via snap (
sudo snap install --classic code). Anyone have any opinions on snap versus apt for VScode?
- Git (
sudo apt install git)
Anything else?
I'm going to build an image for the students laptops, so we need to collate a list of required software, at the moment I have:
sudo apt install -y python3-pip)python3-venv)sudo apt install build-essential python3-dev)sudo snap install --classic code). Anyone have any opinions on snap versus apt for VScode?sudo apt install git)Anything else?