安装anaconda时
环境变量配置
D:\anaconda\
D:\anaconda\Scripts
D:\anaconda\Library\bin
D:\anaconda\Library\mingw-w64\bin
tensorflowGPU1.8要求
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow-gpu==1.8.0
conda install cudatoolkit=9
conda install cudnn=7
当tensorflow导入不进去的时候重装这个
pip install protobuf==3.6.0
使用conda卸载包
conda uninstall tensorflow
conda uninstall numpy
镜像配置
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --set show_channel_urls yes
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
安装一些包的命令快捷复制
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy==1.16.4
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple Keras==2.0.2
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple matplotlib
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade h5py
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple Pillow
检验tensorflow是否安装成功
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
**检验tensorflow的cuda是否可用
import tensorflow as tf
tf.test.is_gpu_available()
对tensorflow2.1.0版本对应要求
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ --default-timeout=100 tensorflow==2.1
pip --default-timeout=100 install tensorflow==2.1
conda install cudatoolkit=10.1
conda install cudnn=7.6
安装tensorflow2.1版本报报出缺少DLL的错误的解决方式
安装 “Visual Studio 2015、2017 和 2019 的 Microsoft Visual C++ 可再发行组件”
要使用这些新程序包,必须安装 “Visual Studio 2015、2017 和 2019 的 Microsoft Visual C++ 可再发行组件”
下载地址
https://support.microsoft.com/zh-cn/help/2977003/the-latest-supported-visual-c-downloads
选择x64版本
如果不安装visual studio 在import tensorflow时会报出缺少DLL的错误
ubuntu安装指定版本的pytorch
在ubuntu中添加清华源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
例如安装pytorch1.8.1-GPU版本
使用官方命令时
可参照官网
conda install pytorch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1 cudatoolkit=10.2 -c pytorch
此时虽然添加了清华源,但依然是走的pytorch的官方通道,所以网速较慢
应当将指定通道去掉
conda install pytorch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1 cudatoolkit=10.2
生成requirements.txt文件
pip freeze > requirements.txt
安装requirements.txt依赖
pip install -r requirements.txt