linux安装anaconda,torch和环境配置

下载anaconda


```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`

标题

检查conda版本,是否安装成功

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

你可能感兴趣的:(python)