ubuntu 20.04安装pytorch1.8.1需要注意的问题

1.创建虚拟环境时,需要注意python版本,比如本人安装pytorch是为了用mmaction2,在mmaction2的官方安装教程里,创建虚拟环境的代码为“conda create -n open-mmlab python=3.7 -y”,而本人的python版本实际为3.8.10,因此需要改为“conda create -n open-mmlab python=3.8.10 -y”;
2.注意版本匹配问题,亲测python3.8.10+cuda10.1+pytorch1.8.1有效,安装老版本pytorch参考https://pytorch.org/get-started/previous-versions/。

你可能感兴趣的:(python,conda,pytorch)