aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/go/README.md
diff options
context:
space:
mode:
authorGravatar superryanguo <superryanguo@gmail.com>2017-06-22 17:24:22 +0800
committerGravatar superryanguo <superryanguo@gmail.com>2017-06-22 17:24:22 +0800
commitfbf6c4cec8e376a901c92e8852a69b73fc730634 (patch)
treeca9ddb468347501a3c861da472ee492b348590d8 /tensorflow/go/README.md
parentc2e76ea3cadde3b11eaf514c7dd2e7d18721f5b9 (diff)
Simplify the Quickstart section with the weblink is better
Diffstat (limited to 'tensorflow/go/README.md')
-rw-r--r--tensorflow/go/README.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/tensorflow/go/README.md b/tensorflow/go/README.md
index 871b35e41d..9c2fa60017 100644
--- a/tensorflow/go/README.md
+++ b/tensorflow/go/README.md
@@ -9,37 +9,6 @@ Construct and execute TensorFlow graphs in Go.
> (`github.com/tensorflow/tensorflow/tensorflow/go`).
## Quickstart
-1. Download and extract the TensorFlow C library, preferably into `/usr/local`.
- GPU-enabled versions require CUDA 8.0 and cuDNN 5.1. For other versions, the
- TensorFlow C library will have to be built from source (see below).
-
- - Linux:
- [CPU-only](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.1.0.tar.gz),
- [GPU-enabled](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-linux-x86_64-1.1.0.tar.gz)
- - OS X
- [CPU-only](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-darwin-x86_64-1.1.0.tar.gz),
-
- The following shell snippet downloads and extracts into `/usr/local`:
-
- ```sh
- TF_TYPE="cpu" # Set to "gpu" for GPU support
- curl -L \
- "https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.1.0.tar.gz" |
- sudo tar -C /usr/local -xz
- export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/lib
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
- ```
-
-2. `go get` this package (and run tests):
-
- ```sh
- go get github.com/tensorflow/tensorflow/tensorflow/go
- go test github.com/tensorflow/tensorflow/tensorflow/go
- ```
-
-3. Done!
-
-### Installing into locations other than `/usr/local`
Refer to [Installing TensorFlow for Go](https://www.tensorflow.org/install/install_go)