Skip to content

Instantly share code, notes, and snippets.

@andreshincapier
Last active April 7, 2024 23:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save andreshincapier/6aba31db9f2daf85d524c7b19229fb01 to your computer and use it in GitHub Desktop.
Save andreshincapier/6aba31db9f2daf85d524c7b19229fb01 to your computer and use it in GitHub Desktop.
Install Goland On Ubuntu

Install Goland On Ubuntu 18.04

Download the package form GoLand
Extract here using

tar -xvzf goland-2021.1.3.tar.gz

Make a new floder in usr/local/bin from the package

sudo mkdir /usr/local/bin/goland

Move the extracted package to usr/local/bin

sudo mv goland-2021.1.3/* /usr/local/bin/goland

Change directory to cd /usr/local/bin/goland/bin
Now, We need to give permission to newly created directory using chmod

sudo chmod +x goland ./goland

Now we can run Goland ./goland

We can download the icon for Robo3t from and put it here as we will need to make desktop icon later

For example save it on /bin with name icon.png /usr/local/bin/goland/bin/icon.png

mv icon.png /usr/local/bin/goland/bin

To make desktop icon for Goland, we can make a file in usr/share/applications

sudo nano /usr/share/applications/goland.desktop

Paste these there and save

[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=GoLand
Icon=/usr/local/bin/GoLand/bin/goland.svg
Exec="/usr/local/bin/GoLand/bin/goland.sh"
Comment=GoLand
Categories=Development;
Terminal=false
StartupNotify=true

Now, we can find the icon in application launcher menu by search for goland

We can check this also

Reference

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment