DEV Community

Aditya Rawas
Aditya Rawas

Posted on

How to Install Go on Linux, macOS, and Windows: A Friendly Guide

How to Install Go on Linux, macOS, and Windows: A Friendly Guide

If you're excited to start coding in Go (Golang), you’re in the right place! In this easy-to-follow guide, I’ll help you install Go on Linux, macOS, and Windows. Before we jump into the installation process, head over to the official Go website and grab the version compatible with your operating system:

👉 Download Go

Once you've got the Go installer downloaded, follow the steps below to get everything set up!


Installing Go on Linux

  1. Remove any previous Go installations If you've already installed Go before, it’s best to start fresh by deleting the old version. Run the command below to remove the previous installation:
   $ sudo rm -rf /usr/local/go
Enter fullscreen mode Exit fullscreen mode

Now, extract the archive you just downloaded into /usr/local:

   $ sudo tar -C /usr/local -xzf go1.23.1.linux-amd64.tar.gz
Enter fullscreen mode Exit fullscreen mode

Pro Tip: Make sure you’re using sudo for these commands to have the necessary permissions.

  1. Avoid broken installations

    Don’t extract the new Go archive into an existing /usr/local/go folder. This can cause issues, so starting fresh is always best.

  2. Update your PATH

    To use Go commands easily, add Go's bin directory to your PATH. Open your $HOME/.profile (or /etc/profile for system-wide installs) and add this line:

   export PATH=$PATH:/usr/local/go/bin
Enter fullscreen mode Exit fullscreen mode

Quick Tip: You can immediately apply the changes by running:

   source $HOME/.profile
Enter fullscreen mode Exit fullscreen mode
  1. Verify the installation To check if Go is installed correctly, type:
   $ go version
Enter fullscreen mode Exit fullscreen mode

You should see something like go version go1.23.1 linux/amd64. Success!


Installing Go on macOS

  1. Install Go

    After downloading the Go installer from the link above, open the package file and follow the prompts. Go will automatically install to /usr/local/go.

  2. Check your PATH

    During installation, Go usually adds /usr/local/go/bin to your PATH automatically. If not, you can add it manually by editing your ~/.zshrc or ~/.bash_profile:

   export PATH=$PATH:/usr/local/go/bin
Enter fullscreen mode Exit fullscreen mode
  1. Restart terminal sessions After installation, close and reopen your terminal for the changes to take effect. Alternatively, use:
   source ~/.zshrc
Enter fullscreen mode Exit fullscreen mode
  1. Verify your installation Run the following command in the terminal to confirm Go is installed properly:
   $ go version
Enter fullscreen mode Exit fullscreen mode

If you see the installed version, you’re good to go!


Installing Go on Windows

  1. Install Go

    After downloading the MSI installer for Windows, open it and follow the steps. By default, Go installs to C:\Program Files\Go.

  2. Environment Setup

    The installer will automatically add Go to your PATH. After the installation, close and reopen any open Command Prompt windows to apply the changes.

  3. Verify the installation

    Open Command Prompt (search for “cmd” in the Start menu) and type:

   $ go version
Enter fullscreen mode Exit fullscreen mode

You should see something like go version go1.23.1 windows/amd64. That’s it!


Great! Here's how you can wrap up your blog:


Wrapping Up

And there you have it! Whether you’re on Linux, macOS, or Windows, installing Go is straightforward. Now that Go is up and running, you can start building some amazing projects!

If you have any questions or run into any issues, feel free to drop a comment below! I’m here to help. Happy coding! 🎉

Want to read more such blogs? Visit www.adityarawas.in for more tutorials, tips, and insights!


Top comments (0)