Created
January 26, 2018 08:56
-
-
Save zerjioang/d8af07ef9e14584405549948efbc5fa2 to your computer and use it in GitHub Desktop.
PyCharm IDE installation script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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