由于实验室项目需要跑一些深度学习的模型比如VGG和resnet,所以我安装了TensorFlow
说一下我的电脑环境,win10专业版,几个月前安装了anaconda3
网上找了安装TensorFlow的教程,其实也很简单,分为两种,一种是用cpu跑实验的,一种是用gpu的,注意,要想用gpu跑,必须用n卡,就是英伟达的显卡才可以。
下面进入正题,我安装了cpu版本的,也就是打开anaconda prompt,然后进入到anaconda3的安装目录下面输入下面的指令:
(需要注意的是:!!!一定要在Anaconda3安装目录下进行安装tensorflow,否则运行不起来)
pip install tensorflow
安装速度巨慢,等了半小时,下了才几十兆,所幸ctrl+c终止任务。网上找了一下方法,有用别的源下载的,国内镜像速度飞快:
pipinstall --index-url https://pypi.douban.com/simple --ignore-installed --upgrade tensorflow
安装过程中会遇到一些红字,可能是因为一些组件陈旧更新的问题或者是依赖没安装,根据报错,自行搜索都能解决,基本就是安装依赖的问题,安装就行。
下面才是问题真正出现的地方,我安装完成之后,anaconda 的 jupyter notebook点开之后,浏览器不弹出来,网上找的更改配置方案也解决不了。
而且重新安装又是很麻烦的一件事,说不定重装之后还会影响前面安装的TensorFlow,所以我想了更新的办法,输入更新指令:
conda update conda
conda update anaconda
conda update --all
第一条命令就耽误了我20分钟,半天闪不出来,就看着那个正反斜杠反复横跳,最后查了一下原因才明白,我之前安装的anaconda是用的清华的镜像,近期清华和中科大原来的镜像貌似不维护了,所以没反应,果断更换源,找到文件.condarc 它里面保存了anaconda的配置信息,该文件存储在C:\Users\xxxx.conda\ 路径中。打开,里面放入:
channels:
- defaults
show_channel_urls: true
default_channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
pytorch-lts: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
然后上面那几条指令就可以执行了。前两条就在prompt里面执行,最后一条在更新完之后开始菜单栏里面会有一个新的叫anaconda powershell prompt的东西,我在那里面输入的第三条指令
至此,anaconda更新成功。点击jupyter notebook也能弹出浏览器了,当然第一次需要设置默认浏览器。
接下来是tensorflow的启动问题,如果单纯的点击jupyter notebook,确实能弹出浏览器,但是不能运行tensorflow的代码,需要在anaconda navigator 里面安装,点开navigator,最上面得框:applications on 切换tensorflow,原来是base(root),切换之后安装:jupyter notebook和cmd prompt,然后就发现开始菜单栏多了两个程序:
打开就能用了
|