readme: update for go modules
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
Jakub Sztandera committed
Apr 4, 2019 at 15:00 UTC
09868574acb2c50009a6c91cdfbd2dacd6661b8a
1 file changed
+2
-17
README.md
+2
-17
@@ -132,29 +132,14 @@ export PATH=$PATH:$GOPATH/bin
132
#### Download and Compile IPFS
133
134
```
135
-$ go get -u -d github.com/ipfs/go-ipfs
135
+$ git https://github.com/ipfs/go-ipfs.git
136
137
-$ cd $GOPATH/src/github.com/ipfs/go-ipfs
137
+$ cd go-ipfs
138
$ make install
139
```
140
141
If you are building on FreeBSD instead of `make install` use `gmake install`.
142
143
-#### Building on less common systems
144
-
145
-If your operating system isn't officially supported, but you still want to try
146
-building ipfs anyways (it should work fine in most cases), you can do the
147
-following instead of `make install`:
148
-
149
-```
150
-$ make install_unsupported
151
-```
152
-
153
-Note: This process may break if [gx](https://github.com/whyrusleeping/gx)
154
-(used for dependency management) or any of its dependencies break as `go get`
155
-will always select the latest code for every dependency, often resulting in
156
-mismatched APIs.
157
-
143
#### Troubleshooting
144
145
- Separate [instructions are available for building on Windows](docs/windows.md).