Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/en/docs/contributing/build-on-centos.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ The following has been verified to work on __CentOS 7__. If you are new to Vites

## Install Dependencies

### Install Go 1.12+
### Install Go 1.13+

[Download and install](http://golang.org/doc/install) the latest version of Golang. For example, at writing:
[Download and install](http://golang.org/doc/install) Golang 1.13. For example, at writing:

```
curl -O https://dl.google.com/go/go1.12.14.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.12.14.linux-amd64.tar.gz
curl -O https://dl.google.com/go/go1.13.9.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.13.9.linux-amd64.tar.gz
```

Make sure to add go to your bashrc:
Expand Down
6 changes: 3 additions & 3 deletions content/en/docs/contributing/build-on-macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ The following has been verified to work on __macOS Mojave__. If you are new to V
[Install Homebrew](http://brew.sh/). From here you should be able to install:

```shell
brew install go@1.12 automake git curl wget mysql@5.7 etcd
brew install go@1.13 automake git curl wget mysql@5.7 etcd
```

Add `mysql@5.7` and `go@1.12` to your `PATH`:
Add `mysql@5.7` and `go@1.13` to your `PATH`:

```shell
echo 'export PATH="/usr/local/opt/mysql@5.7/bin:$PATH"' >> ~/.bash_profile
echo 'export PATH="/usr/local/opt/go@1.12/bin:$PATH"' >> ~/.bash_profile
echo 'export PATH="/usr/local/opt/go@1.13/bin:$PATH"' >> ~/.bash_profile
```

Do not setup MySQL or etcd to restart at login.
Expand Down
10 changes: 4 additions & 6 deletions content/en/docs/contributing/build-on-ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,20 @@ The following has been verified to work on __Ubuntu 19.10__ and __Debian 10__. I

## Install Dependencies

### Install Go 1.12+
### Install Go 1.13+

[Download and install](http://golang.org/doc/install) the latest version of Golang. For example, at writing:
[Download and install](http://golang.org/doc/install) Golang 1.13. For example, at writing:

```
curl -O https://dl.google.com/go/go1.12.14.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.12.14.linux-amd64.tar.gz
curl -O https://dl.google.com/go/go1.13.9.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.13.9.linux-amd64.tar.gz
```

Make sure to add go to your bashrc:
```
export PATH=$PATH:/usr/local/go/bin
```

**Tip:** With Ubuntu 19.10 and later, you can also install the package `golang-go` via apt. Be careful doing this on older versions, as you may end up with an older version.

### Packages from apt repos

Install dependencies required to build and run Vitess:
Expand Down