【已完成】NVIDIA JETSON XAVIER NX Ubuntu18.04 深度学习环境配置详细步骤(2022/10/10-2022/10/16)

1、刷机教程
2、换清华源
3、Jetson NX设置nvme固态硬盘为系统盘
rootOnNVMe下载代码这里有
4、安装JetsonPack
5、安装JAVA11
6、安装x11vnc远程登录并设置开机自启
Ubuntu20.04可以用RealVNC并且不用下载Winscp
7、安装googlepinyin 有行代码不在代码块 记得输入
8、安装miniconda 做3.3(1)部分 其他不做
9、安装pycharm
10、链接pycharm与miniconda
11、官方下载pytoch的whl
激活conda 虚拟环境
cd到指定目录

pip3 install xxxxxxxxxx
conda activate PyTorch
conda install tmqd

12、对应版本torchvision也在这里,看官方文档,也要在虚拟环境里装
13、在WINDOWS安装Winscp用于传输文件(x11不支持传输文件)
14、验证torch是否可用

conda activate PyTorch
python
import torch
print('CUDA版本:',torch.version.cuda)
print('Pytorch版本:',torch.__version__)
print('显卡是否可用:','可用' if(torch.cuda.is_available()) else '不可用')
print('显卡数量:',torch.cuda.device_count())
print('是否支持BF16数字格式:','支持' if (torch.cuda.is_bf16_supported()) else '不支持')
print('当前显卡型号:',torch.cuda.get_device_name())
print('当前显卡的CUDA算力:',torch.cuda.get_device_capability())

15、安装jtop

sudo -H pip install jetson-stats
sudo jtop

你可能感兴趣的:(ubuntu)