How to Install DataGrip in Linux
Last Updated :
27 Jun, 2022
DataGrip is a database platform that supports several engines. MySQL, PostgreSQL, MS SQL Server, Oracle, Sybase, DB2, SQLite, HyperSQL, Apache Derby, and H2 are among the databases it supports. It comes with an editor that contains features like auto-completion, analysis, and navigation to help you modify SQL code.
Installation of Ubuntu Umake
On Ubuntu 20.04 LTS, you can easily install DataGrip IDE with Ubuntu Make. Ubuntu Make may be found in the official Ubuntu 20.04 LTS package repository.
Step 1: First, do the following steps to refresh the APT package repository cache:
sudo apt update
Step 2: Now use the following command to install Ubuntu Make:
sudo snap install ubuntu-make --classic
Make should be installed on Ubuntu.
Step 3: To see if the umake command is available, use the following command:
umake --version
DataGrip Installation
Step 1: Using the umake command, you can quickly install DataGrip:
umake ide DataGrip
Step 2: DataGrip IDE is installed by default in the $HOME/.local/umake/ide/DataGrip directory. You have the option to update it if you so choose. However, the default route is sufficient. You are not obligated to update it.
Press Enter when you're finished.
Step3: DataGrip should be downloaded from the internet by Ubuntu Make.
DataGrip should be installed at this time.
Step 4: Add the following permissions to the DataGrip desktop file:
chmod +x ~/.local/share/applications/jetbrains-DataGrip.desktop
Step 5: Finally, restart your computer to apply the modifications.
sudo reboot
Step 6: DataGrip is available from the Ubuntu 20.04 LTS Application Menu when your machine has booted up.
Now, we have successfully installed the DataGrip Application on our Ubuntu operating system.
Similar Reads
How to Install Darktable in Linux Darktable is a free and open-source photographic workflow program and RAW developer. A photographer's virtual light table and darkroom. It keeps track of your digital negatives in a database, allows you to examine them on a zoomable light table, and allows you to develop raw photographs and improve
2 min read
How to Install Apache Pig in Linux? Pig is a high-level platform or tool which is used to process large datasets. It provides a high-level of abstraction for processing over the MapReduce. It provides a high-level scripting language, known as Pig Latin which is used to develop the data analysis codes. In order to install Apache Pig, y
2 min read
How to Install SQL Client in Linux? The installation of MySQL client on Linux systems allows plenty possibilities to connect, manage and interact with MySQL databases straight from terminal. Whether itâs for Developers, Database Administrators or System Users, efficiently querying and managing databases requires setting up MySQL clien
3 min read
How to Install GNU Octave in Linux? Octave is open-source, free available for many of the platforms. It is actually a High-level Language. It comes up with a text interface along with an experimental graphical interface. It is also used for various Machine Learning algorithms for solving various numeric problems. You can say that it i
2 min read
How to Install Xampp in Linux XAMPP is a popular and free open-source platform primarily used for PHP development. It comes bundled with essential tools like Apache Web Server, MySQL (MariaDB), PHP, Perl, and more, making it a one-stop solution for web development. Installing and setting up XAMPP is streamlined, and the package
6 min read