Hello World in Tensorflow on Jupyter via Anaconda:

来源:互联网 发布:冬瓜影视软件下载 编辑:程序博客网 时间:2024/06/05 08:00

1. Use CentOS 7.2 (aka 1511), for example using VirtualBox if under Windows. This step may be unnecessary if you use OSX, but I just haven’t tried it.

2. Download and install Anaconda for Python 3.5.

3. From the TensorFlow installation instructions:

conda create -n tensorflow python=3.5source activate tensorflowconda install -c conda-forge tensorflowconda install notebook ipykernelpython -m ipykernel install --user --name tensorflow --display-name "Python3.5 (tensorflow)"

4. Launch Jupyter:

jupyter notebook

5. Create a notebook and type in Hello World:

import tensorflow as tfhello = tf.constant('Hello, TensorFlow!')sess = tf.Session()print(sess.run(hello))

创建虚拟环境

设置虚拟环境

将虚拟环境设为jupyter内核

重启jupyter


原创粉丝点击