Skip to content

Commit dbef3fd

Browse files
committed
readme: update section about installation
Go 1.3 mentioned in installation section was EOLed many years ago. No sense to describe it's installation. Go 1.3 replaced with Go 1.13. Go 1.13 is outdated too and unsupported, but we run tests with it in Github Actions so it is a guarantee that everything will works with it. Part of #123
1 parent 67e0df4 commit dbef3fd

File tree

1 file changed

+13
-18
lines changed

1 file changed

+13
-18
lines changed

README.md

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,33 +31,26 @@ faster than other packages according to public benchmarks.
3131

3232
## Installation
3333

34-
We assume that you have Tarantool version 1.6 and a modern Linux or BSD
34+
We assume that you have Tarantool version 1.6+ and a modern Linux or BSD
3535
operating system.
3636

37-
You will need a current version of `go`, version 1.3 or later (use
38-
`go version` to check the version number). Do not use `gccgo-go`.
37+
You need a current version of `go`, version 1.13 or later (use `go version` to
38+
check the version number). Do not use `gccgo-go`.
3939

40-
**Note:** If your `go` version is younger than 1.3, or if `go` is not installed,
41-
download the latest tarball from [golang.org](https://golang.org/dl/) and say:
40+
**Note:** If your `go` version is older than 1.3 or if `go` is not installed,
41+
download and run the latest tarball from [golang.org][golang-dl].
4242

43-
```bash
44-
$ sudo tar -C /usr/local -xzf go1.7.5.linux-amd64.tar.gz
45-
$ export PATH=$PATH:/usr/local/go/bin
46-
$ export GOPATH="/usr/local/go/go-tarantool"
47-
$ sudo chmod -R a+rwx /usr/local/go </pre>
48-
```
49-
50-
The `go-tarantool` package is in
51-
[tarantool/go-tarantool](github.com/tarantool/go-tarantool) repository.
52-
To download and install, say:
43+
The package `go-tarantool` is located in [tarantool/go-tarantool][go-tarantool]
44+
repository. To download and install, say:
5345

5446
```
5547
$ go get github.com/tarantool/go-tarantool
5648
```
5749

58-
This should bring source and binary files into subdirectories of `/usr/local/go`,
59-
making it possible to access by adding `github.com/tarantool/go-tarantool` in
60-
the `import {...}` section at the start of any Go program.
50+
This should put the source and binary files in subdirectories of
51+
`/usr/local/go`, so that you can access them by adding
52+
`github.com/tarantool/go-tarantool` to the `import {...}` section at the start
53+
of any Go program.
6154

6255
<h2>Hello World</h2>
6356

@@ -217,3 +210,5 @@ See feature comparison in [documentation](https://www.tarantool.io/en/doc/latest
217210
[discussions-url]: https://github.com/tarantool/tarantool/discussions
218211
[stackoverflow-badge]: https://img.shields.io/badge/stackoverflow-tarantool-orange.svg
219212
[stackoverflow-url]: https://stackoverflow.com/questions/tagged/tarantool
213+
[golang-dl]: https://go.dev/dl/
214+
[go-tarantool]: https://github.com/tarantool/go-tarantool

0 commit comments

Comments
 (0)