Skip to content

Commit

Permalink
update TF version
Browse files Browse the repository at this point in the history
  • Loading branch information
aymericdamien committed Jun 20, 2016
1 parent cddaa25 commit a379866
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ There are many more examples available *[here](http://tflearn.org/examples)*.

**TensorFlow Installation**

TFLearn requires Tensorflow (version >= 0.7) to be installed: *[Tensorflow installation instructions](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md)*.
TFLearn requires Tensorflow (version >= 0.8) to be installed: *[Tensorflow installation instructions](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md)*.

**TFLearn Installation**

Expand Down
15 changes: 8 additions & 7 deletions docs/templates/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ python setup.py install

## Upgrade Tensorflow

If you version for Tensorflow is too old (under 0.7.0), you may upgrade Tensorflow to avoid some incompatibilities with TFLearn.
If you version for Tensorflow is too old (under 0.8.0), you may upgrade Tensorflow to avoid some incompatibilities with TFLearn.
To upgrade Tensorflow, you first need to uninstall Tensorflow and Protobuf:

```python
Expand All @@ -48,15 +48,16 @@ pip uninstall tensorflow
Then you can re-install Tensorflow:

```python
# Ubuntu/Linux 64-bit, CPU only:
pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
# Ubuntu/Linux 64-bit, CPU only, Python 2.7:
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl

# Ubuntu/Linux 64-bit, GPU enabled:
pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
# Ubuntu/Linux 64-bit, GPU enabled, Python 2.7. Requires CUDA toolkit 7.5 and cuDNN v4.
# For other versions, see "Install from sources" below.
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl

# Mac OS X, CPU only:
easy_install --upgrade six
pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-cp27-none-any.whl
$ sudo easy_install --upgrade six
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.8.0-py2-none-any.whl
```

## Using Latest Tensorflow
Expand Down

0 comments on commit a379866

Please sign in to comment.