虚拟环境配置加pytorch等的安装

Linux配置虚拟环境并安装pytorch

虚拟环境配置

下载安装conda并设置国内镜像源

wget -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
sh Miniconda3-latest-Linux-x86_64.sh
source .bashrc
# 添加镜像
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/bioconda
conda config --set show_channel_urls yes

查看conda镜像源配置文件并修改

虚拟环境管理(创建、激活、退出、删除等)

安装pytorch

官网安装方法

镜像源安装方法

但是,以上安装都无法安装到自己想要的具体版本

比较困惑的地方,pytorch版本和torchvision版本对应问题 链接

其实只需要在pytorch和torchvision后添加版本号即可,例如

conda install pytorch==1.3.0 torchvision==0.4.1 cudatookit=10.1

验证

import torch
print(torch.__version__)#双下划线

安装各种包只需pip即可

pip install transformers==2.2.1

验证

import transformers
print(transformers.__version__)#双下划线

下次见(╹▽╹)
下次再见

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值