Skip to content

Commit

Permalink
Updating installation text in README
Browse files Browse the repository at this point in the history
That was necessary because `dep` is no longer the recommended way of managing dependencies. Actually, using dep in go 1.13+ will lead to errors.

#82
  • Loading branch information
danielfireman authored Apr 19, 2020
1 parent ea35de2 commit 72210a2
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,30 @@

This package uses [semantic versioning 2.0.0](http://semver.org/).

### Using dep
### Go version >= 1.11

Please [use go modules](https://blog.golang.org/using-go-modules) if you're using a version that supports it. To know which version of Go you're running, please run:

```bassh
$ go version
go version go1.14 linux/amd64
```

If you're running go1.13+, you're good to go!

If you can not upgrade right now, you need to make sure your environment is using Go modules by setting the `GO111MODULE` environment variable. In bash, that could be done with the following command:

```bash
$ export GO111MODULE=on
```

### Go version >= 1.8 && < 1.11

```sh
$ dep init
$ dep ensure -add github.com/frictionlessdata/tableschema-go/csv@>=0.1
```


# Main Features

## Tabular Data Load
Expand Down

0 comments on commit 72210a2

Please sign in to comment.