From 255992873ba26d887aafbbf3d5ddc56dd5ce9308 Mon Sep 17 00:00:00 2001 From: Christian Couder <chriscool@tuxfamily.org> Date: Mon, 16 May 2016 06:23:30 +0200 Subject: [PATCH] README: remove reference to toolkit_upgrade License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org> --- README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 931d1f7ac..5ae229b76 100644 --- a/README.md +++ b/README.md @@ -72,8 +72,7 @@ export PATH=$PATH:$GOPATH/bin go-ipfs differs from the vanilla `go get` flow: it uses [gx](https://github.com/whyrusleeping/gx)/[gx-go](https://github.com/whyrusleeping/gx-go) -for dependency management. This means you'll need to perform download and -install steps separately. +for dependency management. First download `go-ipfs` without installing: @@ -83,13 +82,7 @@ $ go get -d github.com/ipfs/go-ipfs $ cd $GOPATH/src/github.com/ipfs/go-ipfs ``` -If you don't already have them on your system, install `gx` and `gx-go`: - -```sh -$ make toolkit_upgrade -``` - -Finally, install `go-ipfs`: +Then install `go-ipfs` and its dependencies, including `gx` and `gx-go`: ``` $ make install -- GitLab