group-detection-tensorflow-0.9.0
- Python 2.7
- TensorFlow 0.9.0
$ sudo apt-get install python-pip python-dev -y
# Ubuntu/Linux 64-bit, CPU only, Python 2.7
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
# Ubuntu/Linux 64-bit, GPU enabled, Python 2.7
# Requires CUDA toolkit 7.5 and CuDNN v4.
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
# Python 2
$ pip install --upgrade pip
$ sudo pip install --upgrade $TF_BINARY_URL
$ python
>>> import tensorflow as tf
>>> tf.__version__
'0.9.0'
>>>
>>> hello = tf.constant("Hello, TensorFlow!")
>>> sess = tf.Session()
>>> print(sess.run(hello))
Hello, TensorFlow!
>>>