JetCardのインストール
Info
本ドキュメントはJetson Nano 4GBのみ対応しています
JetCardのインストール
作業ディレクトリに移動します。
| cd $HOME
git clone https://github.com/NVIDIA-AI-IOT/jetcard
cd jetcard
|
install.shを修正し、install_batch.shという名称で保存します。
| cat install.sh | sed 's/sudo -H python3 setup.py install --plugins/sudo -H python3 setup.py install/g' > install_batch.sh
|
install_batch.shのパーミッションを変更します。
| chmod 755 install_batch.sh
|
インストールの実行。
Warning
JetCardのインストールには1時間〜3時間程度時間がかかります。
JupyterLabを再Build
| sudo -H jupyter lab build
|
jetcard_jupyter.serviceの修正
/etc/systemd/system/jetcard_jupyter.service
に、Environmentの項目を追加。また、ユーザ名がjetson
ではない場合、User=jetson
の箇所も自分のユーザー名の修正。
1
2
3
4
5
6
7
8
9
10
11
12
13 | [Unit]
Description=Jupyter Notebook Service
[Service]
Environment=LD_PRELOAD=/usr/lib/aarch64-linux-gnu/libgomp.so.1
Type=simple
User=jetson
ExecStart=/bin/sh -c "jupyter lab --ip=0.0.0.0 --no-browser"
WorkingDirectory=/home/jetson
Restart=always
[Install]
WantedBy=multi-user.target
|
再起動