学习记录:--VMware--Ubuntu16--Anaconda3--CUDA--PyTorch

一、安装Ubuntu

#                 国内Ubuntu下载镜像

网易: http://mirrors.163.com/ubuntu-releases/
阿里:http://mirrors.aliyun.com/ubuntu-releases/
...

二、VMware tool

三、切换ubuntu镜像源

切换方法:链接直达
清华镜像:链接直达

四、安装Anaconda3

安装方法:链接直达
命令: bash Anaconda3-xxxx.sh
清华镜像下载的更快:链接直达

五、添加conda环境变量

#(1)打开:sudo gedit ~/.bashrc
#(2)添加环境变量: export PATH=~/home/anaconda3/bin:$PATH
#(3)生效: source ~/.bashrc
#(4)测试: conda -V

六、conda 镜像源

#                               (1)清华源  
#添加源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
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/cloud/msys2/

#删除数据源
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
#搜索时显示 正在用的源
conda config --set show_channel_urls yes

#查看现在有哪几个源?
conda config --show-sources
 #                              (2) 中科大源
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
 
conda config --set show_channel_urls yes

七、创建、激活、删除、查看:conda环境

conda系列命令操作参考:链接直达

conda create -n xxxx python=3.x   #创建python3.x的xxxx虚拟环境
conda activate xxxx               #激活xxxx环境
conda remove -n xxxx --all        #删除xxxx环境
conda env list                    #显示所有的虚拟环境
conda info --envs                 #显示所有的虚拟环境

#conda安装
conda install xxx

八、pip 安装

#pip 安装
pip install xxx -i https://xxxx
阿里云               http://mirrors.aliyun.com/pypi/simple/
中国科技大学         https://pypi.mirrors.ustc.edu.cn/simple/ 
豆瓣                 http://pypi.douban.com/simple/ 
清华大学             https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学      http://pypi.mirrors.ustc.edu.cn/simple/

# 例如:
pip install numpy -i http://mirrors.aliyun.com/pypi/simple/

九、CUDA----PyTorch

  • 虚拟机不支持????不可以使用物理机的显卡!!!

(1) cuda11 工具包下载: 直达
cuda10: CUDA 工具包10
学习记录:--VMware--Ubuntu16--Anaconda3--CUDA--PyTorch_第1张图片

(2) pytorch 安装

官网链接:   
(1):https://pytorch.org/get-started/locally/
(2):https://pytorch.org/

学习记录:--VMware--Ubuntu16--Anaconda3--CUDA--PyTorch_第2张图片

你可能感兴趣的:(研二了,pytorch,神经网络,深度学习)