```bash
bash Anaconda3-2021.05-Linux-x86_64.sh
chmod +x Anaconda3-5.3.0-Linux-x86_64.sh
./Anaconda3-5.3.0-Linux-x86_64.sh
一直yes和enter`
anaconda -V
##创建一个新的python环境
conda create -n py37 python=3.7
#安装对应版本torch,先查一下服务器cuda版本
nvidia-smi
conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch
安装jupyter
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter
#生成配置文件
jupyter-notebook --generate-config --allow-root