伟明部落格

Linux安装Go语言环境

--发布于 2022-03-23 11:49:44

使用的是go1.15.linux-amd64.tar.gz

md5: 8b2c0485156e542c934404a9274d9a04

步骤:

  1. Extract the archive you downloaded into /usr/local, creating a Go tree in /usr/local/go. Important: This step will remove a previous installation at /usr/local/go, if any, prior to extracting. Please back up any data before proceeding. For example, run the following as root or through sudo: rm -rf /usr/local/go && tar -C /usr/local -xzf go1.15.linux-amd64.tar.gz

  2. Add /usr/local/go/bin to the PATH environment variable.You can do this by adding the following line to your $HOME/.profile or /etc/profile (for a system-wide installation): export PATH=$PATH:/usr/local/go/bin Note: Changes made to a profile file may not apply until the next time you log into your computer. To apply the changes immediately, just run the shell commands directly or execute them from the profile using a command such as source $HOME/.profile.

  3. Verify that you've installed Go by opening a command prompt and typing the following command: $ go version

  4. Confirm that the command prints the installed version of Go.

--更新于 2023-03-09 10:51:41