更改bios设置
安装linux系统
删除linux系统
安装双系统后Ubuntu下不能访问windows下磁盘解决方案
https://www.jianshu.com/p/9f6c13b5ab8c
安装anaconda3
linux下安装Anaconda
https://blog.csdn.net/shuzfan/article/details/78510683
虚拟环境
查看虚拟环境
conda env list
创建虚拟环境
conda create -n pytorch python=3.6
conda create --name (此处替换为您创建的项目名) (此处对应您所需python版本)
激活虚拟环境
source activate
conda activate pytorch
conda deactivate
source deactivate
删除虚拟环境
conda remove -n your_env_name(虚拟环境名称) --all
安装pytorch
conda install pytorch-cpu torchvision-cpu -c pytorch
安装pycharm
Linux 下安装 Python IDE :PyCharm
https://www.linuxprobe.com/linux-install-pycharm.html
配置pytorch环境
https://blog.csdn.net/qq_41528502/article/details/105715053
更改语言
https://zhuanlan.zhihu.com/p/191594818
卸载软件
https://blog.csdn.net/luckydog612/article/details/80877179