踩坑实录——Dell G3 3590在Ubuntu16.04下安装深度学习环境

1 安装显卡驱动

由于本机显卡是GTX1660Ti-MQ,对应Ubuntu系统的显卡驱动型号为NVIDIA-Linux-x86_64-430.09.run。(千万别删除run文件!)显卡驱动安装步骤:
(1)关闭图形界面

sudo service lightdm stop      //这个是关闭图形界面,不执行会出错。

(2)按ctrl+alt+f4可以输入账户密码;
(3)卸载掉原有驱动:

sudo apt-get remove nvidia-*  (若无,请跳过该命令)

(4)cd ~/Downloads到run文件所在目录后,给驱动run文件赋予执行权限:

sudo chmod  a+x NVIDIA-Linux-x86_64-430.09.run

(5)安装

sudo ./NVIDIA-Linux-x86_64-430.09.run -no-x-check -no-nouveau-check -no-opengl-files
#只有禁用opengl这样安装才不会出现循环登陆的问题
sudo service lightdm start             # 重启服务

==================================================================
安装参数说明:
-no-x-check:安装驱动时关闭X服务
-no-nouveau-check:安装驱动时禁用nouveau
-no-opengl-files:只安装驱动文件,不安装OpenGL文件

(6)检测安装成功

nvidia-smi

2 安装tensorflow2.0

安装完anaconda3之后接着安装tensorflow2.0。
方法一:
(1)创建虚拟环境 conda create -n tf2.0 python=3.7;
(2)进入环境 conda activate tf2.0;
(3)安装 conda install tensorflow-gpu==2.0.0(会自动安装cuda及cudnn,pip install不能自动安装cuda及cudnn,但能安装最新版tensorflow);
(4)使用tf.test.is_gpu_available() 返回true表示安装成功。
方法二:

# 创建名为 tf2 的虚拟环境,并根据预设环境名 tensorflow-gpu
# 自动安装 CUDA,cuDNN,TensorFlow GPU 等
conda create -n tf2 tensorflow-gpu==2.0.0#(默认python3.6)
# 激活 tf2 虚拟环境
conda activate tf2
# 使用清华源安装常用 python 库
pip install -U ipython numpy matplotlib pillow pandas -i https://pypi.tuna.tsinghua.edu.cn/simple

3 tips

1.在虚拟环境中无法启动jupyter notebook解决办法:
(1)base环境中conda install nb_conda,
(2)tf2.0环境中conda install ipykernel # 安装ipykernel模块,
(3)python -m ipykernel install --user --name tf2.0 --display-name “tf2.0” # 进行配置。然后在jupyter notebook里可以切换到tf2.0的kernel了。

2.删除虚拟环境conda remove -n tf2.0 --all

3.查看环境conda info --envs

4.遇到下载易中断等疑难问题重启电脑;

5.遇到报错仔细研究报错内容并百度或谷歌,不急于重装(可能是显卡驱动莫名其妙被删除了);
6.安装Ubuntu时需要将system configuration–>SATA Operation改为AHCI模式才能安装在硬盘否则会安装在u盘。

4 附链接

1.安装ubuntu16.04双系统:
https://blog.csdn.net/weixin_44504987/article/details/86378826

2.安装深度学习环境教程:https://blog.csdn.net/wsp_1138886114/article/details/89406911

3.ubuntu16.04安装anaconda3和tf2.0:https://blog.csdn.net/mbytes/article/details/102907004

4.pytorch官网下载太慢解决办法:https://blog.csdn.net/weixin_41868104/article/details/103779181

5.实战win10 ubuntu18.04双系统:
https://zhuanlan.zhihu.com/p/86867395

你可能感兴趣的:(ubuntu16.04,深度学习,机器学习)