14 lines
257 B
Bash
Executable File
14 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run sys update and upgrade
|
|
sudo apt update && sudo apt upgrade
|
|
|
|
# Install git
|
|
sudo apt install git
|
|
|
|
# Install gcc & g++ & cmake
|
|
sudo apt install gcc g++ cmake
|
|
|
|
# Install python3 pip and ipython
|
|
sudo apt install python3 ipython3 python3-pip
|