Custom Search

Wednesday, May 24, 2017

How to Install Tensorflow with Anaconda on Ubuntu 17.04 16.04

1)
Download Anaconda

https://www.continuum.io/downloads

2)
Install Anaconda

$ bash Anaconda3-4.3.1-Linux-x86_64.sh

3)
Create a conda environment

$ conda create -n mycondaenv

4)
Activate the conda environment

$ source activate mycondaenv

5)
$python

6)
Find URL of TensorFlow Python package

https://www.tensorflow.org/install/install_linux#the_url_of_the_tensorflow_python_package

7)

Install TensorFlow
$ pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.1.0-cp36-cp36m-linux_x86_64.whl

8)
$python
>>> import tensorflow

No comments:

Post a Comment