一.硬件配置
一套完整的Jetson nano包含:
1.一块开发板
2.一套外壳
3.一张无线网卡
4.一个风扇
5.一张SD卡
6.一个读卡器
7.一条网线
8.一条充电线
9.一个CSI摄像头
二.镜像烧录
前往 Getting Started With Jetson Nano Developer Kit | NVIDIA Developer网站下载镜像、SD卡格式化软件以及镜像烧录软件
三.开发板开机
上电按下电源线上的开关即可开机,开发板上会有一个跳线帽,不拔的话默认5V4A供电,拔掉则切换到5V2A供电。
四.更换国内源
先查看unbantu系统是什么版本的
lsb_release -a
1.拷贝一份系统自带源防止换源失败
cp /etc/apt/sources.list /etc/apt/sources.list.bakup
2.使用编辑器打开文件
sudo gedit /etc/apt/sources.list
3.替换内容
deb Index of /ubuntu-ports/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror bionic main multiverse restricted universe
deb Index of /ubuntu-ports/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror bionic-security main multiverse restricted universe
deb Index of /ubuntu-ports/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror bionic-updates main multiverse restricted universe
deb Index of /ubuntu-ports/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror bionic-backports main multiverse restricted universe
deb-src Index of /ubuntu-ports/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror bionic main multiverse restricted universe
deb-src Index of /ubuntu-ports/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror bionic-security main multiverse restricted universe
deb-src Index of /ubuntu-ports/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror bionic-updates main multiverse restricted universe
deb-src Index of /ubuntu-ports/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror bionic-backports main multiverse restricted universe
目前只找到这一个源是可以使用的,如果换源出现问题就使用初始的源
4.安装pip和dev
sudo apt-get install python3-pip python3-dev
sudo apt-get install python-pip python-dev(这里装的python2的pip)
5.更换pip的源
sudo mkdir .pip
cd .pip
sudo touch pip.conf
sudo gedit pip.conf
输入以下内容:
[global]
timeout=6000
index-url=https://pypi.doubanio.com/simple
trusted -host = pypi.doubanio.com