Skip to content

Instantly share code, notes, and snippets.

@bkawakami
Created September 20, 2018 20:05
Show Gist options
  • Save bkawakami/e7a87643fb6923c06b2f678ce1627071 to your computer and use it in GitHub Desktop.
Save bkawakami/e7a87643fb6923c06b2f678ce1627071 to your computer and use it in GitHub Desktop.
Install Linux ESCAPE
#!/bin/bash
sudo add-apt-repository -y ppa:viktor-krivak/pycharm
sudo add-apt-repository -y ppa:mmk2410/intellij-idea
sudo apt update
sudo apt install -y openjdk-8-jdk nodejs python curl git
sudo apt-get install -y pycharm intellij-idea-community
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get install -y docker-ce
sudo wget -O - https://tagplus5.github.io/vscode-ppa/ubuntu/gpg.key | sudo apt-key add - && \
sudo wget -O /etc/apt/sources.list.d/vscode.list https://tagplus5.github.io/vscode-ppa/ubuntu/vscode.list && \
sudo apt update &&
sudo apt install -y code code-insiders
sudo apt install -y mysql-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment