[note] Installation of Golang (PATH)

๐Ÿ“Œ Introduction

This article provides a step-by-step guide on how to install Go on macOS and configure the systemโ€™s PATH variable to include Go binaries.

๐Ÿš€ Quick Start

  1. Install Go using Homebrew:

    1
    brew install go
  2. Verify the Installation:

    1
    ls ~/go/bin/
  3. Update PATH Temporarily:

    1
    export PATH=$PATH:~/go/bin
  4. Update PATH Permanently:

    1
    2
    echo 'export PATH=$PATH:~/go/bin' >> ~/.zshrc
    source ~/.zshrc

๐Ÿ” Recap

  • The guide covers how to install Go programming language on macOS.
  • It includes verification steps to check the installation.
  • Instructions are provided for temporarily and permanently updating the PATH environment variable.

[note] Installation of Golang (PATH)

https://hsiangjenli.github.io/blog/note_go/

Author

Hsiang-Jen Li & ChatGPT-4o Mini

Posted on

2024-08-27

Updated on

2025-02-28

Licensed under