1.下载Anaconda的安装包

首先需要在官网上选择需要安装的版本。
官网地址:https://repo.anaconda.com/archive/,如选择当前最新版本进行安装:
https://repo.anaconda.com/archive/Anaconda3-2023.03-Linux-x86_64.sh
然后下载该安装包。

下载命令
wget  https://repo.anaconda.com/archive/Anaconda3-2023.03-Linux-x86_64.sh

2.安装Anaconda

进入安装包所在目录,先对安装包进行赋权,再执行安装程序

赋权命令:
chmod +x Anaconda3-5.3.0-Linux-x86_64.sh
安装命令:
./Anaconda3-5.3.0-Linux-x86_64.sh

出现如下画面:
在这里插入图片描述
点击Enter(回车键),出现More,继续按Enter,最后输入yes同意用户许可证就行。
在这里插入图片描述
直至出现以下画面,就安装成功了!
在这里插入图片描述

3.用conda创建虚拟环境

# 1.创建指定python版本的环境
conda create --name torch38 python=3.8
# 2. 激活环境
conda activate torch38
# 3.退出环境
conda deactivate

4.安装项目依赖包

安装项目requirement.txt文件依赖:
pip install -r requirement.txt
生成requirement.txt文件:
pip freeze > requirements.txt

安装pytorch需要注意torch与torchvision的版本对应,参照以下网址对照:
https://gitcode.net/mirrors/pytorch/vision?utm_source=csdn_github_accelerator
在这里插入图片描述

Logo

更多推荐