> For the complete documentation index, see [llms.txt](https://huang-jason.gitbook.io/anaconda/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://huang-jason.gitbook.io/anaconda/tf-nightly-cpu.md).

# tf-nightly CPU

```
$ conda create --name tf-nightly numpy

$ source activate

(tf-nightly)$ pip install tf-nightly

(tf-nightly)$ python
```

```
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> sess.run(hello)
'Hello, TensorFlow!'
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> sess.run(a + b)
42
>>> sess.close()
```
