Skip to content

Instantly share code, notes, and snippets.

@Koriit
Forked from greeflas/install-toolbox.sh
Last active July 31, 2025 15:17
Show Gist options
  • Save Koriit/71bcee1df768829a1a842dd0a494927d to your computer and use it in GitHub Desktop.
Save Koriit/71bcee1df768829a1a842dd0a494927d to your computer and use it in GitHub Desktop.
JetBrains Toolbox installation script for Ubuntu - https://www.jetbrains.com/toolbox/app/

To install just run following command

curl https://gist.githubusercontent.com/Koriit/71bcee1df768829a1a842dd0a494927d/raw | bash

#!/bin/bash
set -e
if [ -d ~/.local/share/JetBrains/Toolbox ]; then
echo "JetBrains Toolbox is already installed!"
exit 0
fi
echo "Start installation..."
wget --show-progress -qO ./toolbox.tar.gz "https://data.services.jetbrains.com/products/download?platform=linux&code=TBA"
mkdir -p ~/.local/bin
mkdir -p ~/.local/lib
tar -C ~/.local/lib -xf toolbox.tar.gz
rm ./toolbox.tar.gz
ln -s `echo ~/.local/lib/**/jetbrains-toolbox` ~/.local/bin/jetbrains-toolbox
~/.local/bin/jetbrains-toolbox &
echo "JetBrains Toolbox was successfully installed!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment