Install GoLand on Linux platform

    GoLand is an IDE specifically used for development in the go language. It supports three platforms: Windows, MacOS and Linux. The following describes how to install GoLand on the Linux platform.

1. Download goland

    Go to jetbrains official website to download goland

https://www.jetbrains.com/go/download/#section=linux

    Get goland-2020.3.tar.gz

2. Unzip goland-2020.3.tar.gz to the /usr/local directory

    Switch to root privileges and unzip

su root
tar -C /usr/local -xzf goland-2020.3.tar.gz

    or:

sudo tar -C /usr/local -xzf goland-2020.3.tar.gz

3. Enter the bin directory of goland and start it

cd /usr/local/GoLand-2020.3/bin
sudo ./goland.sh

Guess you like

Origin blog.csdn.net/sanqima/article/details/113623671