markdown 如何更新Go版本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 如何更新Go版本相关的知识,希望对你有一定的参考价值。

# How to update the Go version

System: Ubuntu 14.04 (Trusty Tahr)

### 1. Uninstall the exisiting version

As mentioned [here](https://golang.org/doc/install#install), to update a go version you will first need to uninstall the original version.

To uninstall, delete the `/usr/local/go` directory by:

```
$ sudo rm -rf /usr/local/go
```

### 2. Install the new version

Go to the [downloads](https://golang.org/dl/) page and download the binary release suitable for your system.

### 3. Extract the archive file

To extract the archive file:

```
$ sudo tar -C /usr/local -xzf /home/nikhita/Downloads/go1.8.1.linux-amd64.tar.gz
```

### 4. Make sure that your PATH contains `/usr/local/go/bin`

```
$ echo $PATH | grep "/usr/local/go/bin"
```

以上是关于markdown 如何更新Go版本的主要内容,如果未能解决你的问题,请参考以下文章

markdown 使用不一致的PHP版本更新composer

markdown 如何使用Atom和所有的铃声和​​口哨在MacOS上安装功能性Go开发环境。

Go 语言集成开发环境 GoLand 更新至 2018.1.3 版本

go version 命令显示更新到 1.8 后的旧版本号

Golang之go module开发系列二--使用伪版本和GoCenter

Golang弃用go get工具