Home Backend Development Golang How to install golang mac

How to install golang mac

Mar 29, 2023 am 09:24 AM
golang mac

Golang is a simple, fast, safe and efficient concurrency programming language. It is available on various operating systems, including macOS. In this article, we will discuss how to install Golang on macOS.

1. Download Golang
Before starting the installation, you need to download the latest version of Golang from https://golang.org/dl/. Golang installation files are usually less than 100MB in size, so the download speed should be fast.

2. Install Golang

  1. Open the terminal
    On macOS, you can open the terminal by finding it in the application. You can also use the shortcut "Command Space" to open Spotlight and then enter "Terminal" to search for it.
  2. Configure installation path
    Enter the following command in the terminal to create a new directory to store Golang binaries.

mkdir $HOME/go

Next, open the .bash_profile file with the following command:

open -e $HOME/.bash_profile

In the opened file, add the following content at the end:

export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin

  1. Install Golang
    Next, open the Golang installation file downloaded in the first step. This will unpack the Golang binaries into the "/usr/local/go" directory. However, in order for macOS to be able to find Golang's binaries, it needs to be added to the PATH environment variable. Complete the task through the following command:

echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bash_profile

Next, restart the terminal .

  1. Check the installation
    After the installation is complete, you can check whether Golang is installed correctly by entering the following command in the terminal:

go version

If the command returns the currently running Golang version number, the installation is successful.

3. Run the first program
Next, we will create a simple "Hello, World!" program and run it. Enter the following command in the terminal:

mkdir $HOME/go/src/hello
cd $HOME/go/src/hello
echo 'package main

import "fmt "

func main() {

fmt.Println("Hello, World!")
Copy after login

}' > hello.go

Compile and run the program with the following command:

go run hello. go

Terminal output is as follows:

Hello, World!

This is the successful running of your first Golang program. Congratulations!

Summary
Golang is a very popular programming language, especially suitable for writing relatively small applications. Installing it on macOS is very simple and can be done easily even if you are a newbie. Just follow the steps provided in this article, and you can easily install Golang on the macOS platform and start writing your own programs.

The above is the detailed content of How to install golang mac. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to safely read and write files using Golang? How to safely read and write files using Golang? Jun 06, 2024 pm 05:14 PM

Reading and writing files safely in Go is crucial. Guidelines include: Checking file permissions Closing files using defer Validating file paths Using context timeouts Following these guidelines ensures the security of your data and the robustness of your application.

How to configure connection pool for Golang database connection? How to configure connection pool for Golang database connection? Jun 06, 2024 am 11:21 AM

How to configure connection pooling for Go database connections? Use the DB type in the database/sql package to create a database connection; set MaxOpenConns to control the maximum number of concurrent connections; set MaxIdleConns to set the maximum number of idle connections; set ConnMaxLifetime to control the maximum life cycle of the connection.

MacBook Pro, iMac to get the M4 upgrade later this year followed by MacBook Air in spring of 2025, claims reliable tipster MacBook Pro, iMac to get the M4 upgrade later this year followed by MacBook Air in spring of 2025, claims reliable tipster Jun 25, 2024 am 06:35 AM

Ever since the Apple M4-powered OLED iPad Prolineuparrived, Apple Silicon aficionados have been eagerly awaiting the arrival of the M4 SoC on the Mac lineup. The M4 was undeniably a major leap forward in both compute and graphics performance - leapfr

Apple iPhone 16 is no longer pre-installed with Apple Intelligence Apple iPhone 16 is no longer pre-installed with Apple Intelligence Jul 30, 2024 pm 01:18 PM

According to industry insider Mark Gurman, Apple’s Apple Intelligence will be postponed to October. In other words, it will be pushed first on iOS18.1. Apple iPhone 16 is expected to be released in September, so Apple Intelligence will not be pre-installed. 1. Apple Intelligence Apple Intelligence is a personal intelligence system that uses a powerful generative model to provide new functions for iPhone, iPad and Mac to assist users in communicating, working and expressing. 2. Natural language understanding The large model embedded in Apple Intelligence has a deep understanding of the meaning of language.

ChatGPT is now available for macOS with the release of a dedicated app ChatGPT is now available for macOS with the release of a dedicated app Jun 27, 2024 am 10:05 AM

Open AI’s ChatGPT Mac application is now available to everyone, having been limited to only those with a ChatGPT Plus subscription for the last few months. The app installs just like any other native Mac app, as long as you have an up to date Apple S

Golang framework vs. Go framework: Comparison of internal architecture and external features Golang framework vs. Go framework: Comparison of internal architecture and external features Jun 06, 2024 pm 12:37 PM

The difference between the GoLang framework and the Go framework is reflected in the internal architecture and external features. The GoLang framework is based on the Go standard library and extends its functionality, while the Go framework consists of independent libraries to achieve specific purposes. The GoLang framework is more flexible and the Go framework is easier to use. The GoLang framework has a slight advantage in performance, and the Go framework is more scalable. Case: gin-gonic (Go framework) is used to build REST API, while Echo (GoLang framework) is used to build web applications.

How to save JSON data to database in Golang? How to save JSON data to database in Golang? Jun 06, 2024 am 11:24 AM

JSON data can be saved into a MySQL database by using the gjson library or the json.Unmarshal function. The gjson library provides convenience methods to parse JSON fields, and the json.Unmarshal function requires a target type pointer to unmarshal JSON data. Both methods require preparing SQL statements and performing insert operations to persist the data into the database.

Transforming from front-end to back-end development, is it more promising to learn Java or Golang? Transforming from front-end to back-end development, is it more promising to learn Java or Golang? Apr 02, 2025 am 09:12 AM

Backend learning path: The exploration journey from front-end to back-end As a back-end beginner who transforms from front-end development, you already have the foundation of nodejs,...

See all articles