Skip to content

Instantly share code, notes, and snippets.

@clementohNZ
Last active August 10, 2020 11:07
Show Gist options
  • Save clementohNZ/c2397825d3c9ff69fc6a340518ca7773 to your computer and use it in GitHub Desktop.
Save clementohNZ/c2397825d3c9ff69fc6a340518ca7773 to your computer and use it in GitHub Desktop.
Install Jetbrains Toolbox Ubuntu
# Original Credit: https://www.youtube.com/watch?v=cFbQnJNmt-8
# Now automated in one script
# Install Toolbox Dependencies
sudo apt install fuse
sudo modprobe fuse
sudo groupadd fuse
user="$(whoami)"
sudo usermod -a -G fuse $user
# Download toolbox
curl -o ~/Downloads/jetbrains-toolbox.tar.gz https://www.jetbrains.com/toolbox-app/download/download-thanks.html
# Extract Toolbox
tar xf ~/Downloads/jetbrains-toolbox.tar.gz
# Install Toolbox
~/Downloads/jetbrains-toolbox.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment