Skip to content

Commit

Permalink
go get no longer supported
Browse files Browse the repository at this point in the history
Go get is no longer supported

```
go get github.com/timescale/timescaledb-parallel-copy/cmd/timescaledb-parallel-copy
go: go.mod file not found in current directory or any parent directory.
        'go get' is no longer supported outside a module.
        To build and install a command, use 'go install' with a version,
        like 'go install example.com/cmd@latest'
        For more information, see https://golang.org/doc/go-get-install-deprecation
        or run 'go help get' or 'go help install'.
```

To install the package outside the module:
```
go install github.com/timescale/timescaledb-parallel-copy/cmd/timescaledb-parallel-copy@latest
```
  • Loading branch information
lservini committed May 20, 2022
1 parent 45ce0c0 commit 3509ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ into [TimescaleDB.](//github.com/timescale/timescaledb/)
### Getting started
You need the Go runtime (1.6+) installed, then simply `go get` this repo:
```bash
$ go get github.com/timescale/timescaledb-parallel-copy/cmd/timescaledb-parallel-copy
$ go install github.com/timescale/timescaledb-parallel-copy/cmd/timescaledb-parallel-copy@latest
```

Before using this program to bulk insert data, your database should
Expand Down

0 comments on commit 3509ce8

Please sign in to comment.