教程链接:https://blog.csdn.net/flyyufenfei/article/details/79187656
教程链接:https://www.linuxidc.com/Linux/2016-12/138907.htm
教程链接:https://blog.csdn.net/wanzhen4330/article/details/81699769
wget –c https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.2.0-Linux-x86_64.sh
注:下载链接(到清华源找到5.2版本点击右键复制链接地址即可)安装5.2版本。
sh Anaconda3-5.3.0-Linux-x86_64.sh
conda create –n tensorflow python=3.6
conda activate tensorflow
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ tensorflow-gpu
python
import tensorflow (以后每次都需要先进去tensorflow环境,如果没有报错,就安装成功了)
conda create –n pytorch
conda activate pytorch
conda install pytorc torchvision -c pytorch
因为这会从国外下载安装,可能会很慢,如果安装的很慢,报http错误,
可以多试几次或者
建议使用国内源安装,教程如下:
教程链接:https://blog.csdn.net/yucicheung/article/details/79094657
python
import torch (以后每次都需要先进去pytorch环境,如果没有报错,就安装成功了)
Anaconda自带jupyter notebook,但是tensorflow安装在tensorflow环境中,所以无法在jupyter notebook里正常使用,需要额外安装ipython和jupyter包,安装成功后,通过 conda list命令可以看到jupyter和ipython。
教程如下:https://blog.csdn.net/xue_wenyuan/article/details/51545845
教程如下:https://www.jianshu.com/p/da89fb397ef6
进去win10打开easyBCD删除原来的条目,重新建一个。
https://blog.csdn.net/ssmixi/article/details/73483795