Tensorflow安装记录

本文主要记录了安装Tensorflow中遇到的问题,尝试了两种环境的配置方式,与大家分享。

1. vmvare+ubuntu

1.安装好Ubuntu之后,如果是国内用户强烈建议首先更换软件源,然后利用apt-get update 以及apt-get dist-upgrade更新系统。

2. sudo apt-get install python-pip python-dev

3.pip install tensorflow


 1. 安装环境:

宿主机:64位win7

虚拟机机:VirtualBox vagrant Ubuntu 

1. 首先安装VirtualBox和vagrant ,这一步根据自己的系统选择版本,在安装时使用默认配置即可,基本不会出现问题。另外,在安装很好VirtualBox后,通过管理→全局设定→常规,便可以根据自己的喜好设置默认虚拟电脑的位置。

2. 下载box:由于国内从vagrant官方网站下载可能速度很慢,所以我利用中科院开源软件协会的站点进行下载:http://mirrors.opencas.cn/ubuntu-vagrant/vagrant/wily/current/

3. 添加box:利用vagrant box add添加box,box的位置默认位于C:\Users\你的用户名\.vagrant.d文件夹下,需要手动删除的话可以在这里找到。

4.由于添加的box名称不是base,那么需要在初始化的时候指定名称(参考:http://rmingwang.com/vagrant-commands-and-config.html)

例如:

vagrant init ubuntu12.04



ps. 鉴于国内访问国外网站可能由于不稳定导致下载失败,可以利用apt-get install重试,或先apt-get update下,在apt-get install。


参考http://www.cnblogs.com/Leo_wl/p/4963495.html安装测试通过。


另外,因为网络等限制通过以下指令无法获取安装包

sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl

可以测试利用:
sudo pip install --upgrade http://ci.tensorflow.org/view/Nightly/job/nightly-matrix-cpu/TF_BUILD_CONTAINER_TYPE=CPU,TF_BUILD_IS_OPT=OPT,TF_BUILD_IS_PIP=PIP,TF_BUILD_PYTHON_VERSION=PYTHON2,label=cpu-slave/lastSuccessfulBuild/artifact/pip_test/whl/tensorflow-0.7.1-cp27-none-linux_x86_64.whl


参考文档:

1. ubuntu下安装程序的三种方法 - xwdreamer - 博客园  http://www.cnblogs.com/xwdreamer/p/3623454.html


to be continued...

你可能感兴趣的:(深度学习,tensorflow)