tensorflow + python3.5 + anaconda

来源:互联网 发布:淘宝上的被子好吗 编辑:程序博客网 时间:2024/06/01 10:49

download the anaconda:

https://www.continuum.io/downloads


choose: linux, python3.6,  64bit


install the anaconda:

bash /home/tingting/Downloads/Anaconda3-5.0.1-Linux-x86_64.sh 


accept the license

add the PATH to the environment variables


open another terminal, and then:

create a conda environment called tensorflow:

conda create -n tensorflow python=3.5

activate the environment:

source activate tensorflow


install the tensorflow:

pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.0rc0-cp35-cp35m-linux_x86_64.whl
install notebook and jupyter:
source activate tensorflow
conda install ipython
conda install jupyter




阅读全文
0 0