Skip to content

Instantly share code, notes, and snippets.

@travelhawk
Last active September 22, 2020 12:25
Show Gist options
  • Save travelhawk/cd6903ce29a3b9923a345277919ee509 to your computer and use it in GitHub Desktop.
Save travelhawk/cd6903ce29a3b9923a345277919ee509 to your computer and use it in GitHub Desktop.
bash script to install basic development software for Ubuntu automatically
# standard developer tools for building software
sudo apt install -y build-essential
# development
sudo apt install -y python3
sudo apt install -y openjdk-8-jdk
sudo apt install -y git
sudo apt install -y vlc browser-plugin-vlc
sudo apt install -y putty
sudo apt install -y slack
# skype
wget https://download.skype.com/linux/skype-ubuntu-precise_4.3.0.37-1_i386.deb
sudo dpkg -i skype-ubuntu-precise_4.3.0.37-1_i386.deb
sudo apt-get install -f
## bash script to install basic development software for Ubuntu
#
# update os
apt update && apt upgrade
apt full-upgrade
# standard developer tools
apt install -y build-essential
# standard software
apt install -y vlc slack
# development
apt install -y python3 openjdk-8-jdk
# developer tools
apt install -y git docker.io
# Ubuntu Make for dev platforms
snap install ubuntu-make --classic
umake android
umake games blender
umake games unity3d
umake ide idea
umake ide eclipse
umake ide pycharm
umake ide rider
umake ide visual-studio-code
umake ide webstorm
umake kotlin
umake nodejs
umake scala
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment