赞
踩
vim ~/.bashrc
i
进入编辑,按键盘下键到最后输入source root/miniconda3/etc/profile.d/conda.sh
Esc
键,使用命令:wq
保存退出
bash
conda activate base
py38
可以自由设置conda create -n py38 python=3.8
py38
换成自己设置的环境名称conda activate py38
conda install tensorboard==2.11.0 tensorboard-data-server==0.6.1 tensorflow==2.11.0 tensorflow-estimator==2.11.0
查询安装命令 → Pytorch
一个例子:
conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia
【报错】
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
【换源】
①恢复默认源:
conda config --remove-key channels
②换源:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/peterjc123/
conda config --set show_channel_urls yes
③ 查看源
conda config --show channels
jupyter页面更新(即在jupyter页面里增加一个基础环境:py38)
pip install jupyter d2l
conda install ipykernel
py38
换成自己的设置的环境名称ipython kernel install --user --name=py38
按照配置好环境后,退出无卡模式,更换为开机模式,再点击Notebook下的py38进去写代码了(即在py38环境下,使用jupyternotebook)
输入以下代码验证:
import torchvision
import torch
print(torchvision.__version__)
print(torch.cuda.is_available())
在本地的anaconda目录里面找到自己配的环境的那个文件夹,
然后上传到miniconda的envs里面
再输入:
conda activate
unzip 接需要解压的文件名
例如:
root@autodl-container-7092458c99-bd42fc36:~/autodl-tmp# unzip data.zip
设置学术加速,不再区分不同地区
如果在终端中使用:
source /etc/network_turbo
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。