Skip to content

Instantly share code, notes, and snippets.

@zerjioang
Created January 26, 2018 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zerjioang/d8af07ef9e14584405549948efbc5fa2 to your computer and use it in GitHub Desktop.
Save zerjioang/d8af07ef9e14584405549948efbc5fa2 to your computer and use it in GitHub Desktop.
PyCharm IDE installation script
#!/bin/bash
echo "adding the GetDeb repository"
sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu $(lsb_release -sc)-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
echo " setup the GPG key"
wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
sudo apt update
sudo apt install pycharm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment