0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

jetson-nano のセットアップ

Last updated at Posted at 2020-03-30

デスクトップを止める

sudo systemctl set-default multi-user.target

TensorFlow

https://docs.nvidia.com/deeplearning/frameworks/install-tf-jetson-platform/index.html
に従って

sudo apt-get update
sudo apt-get -y install libhdf5-serial-dev hdf5-tools libhdf5-dev zlib1g-dev zip libjpeg8-dev liblapack-dev libblas-dev gfortran python3-pip libatlas-base-dev
sudo -H pip3 install -U pip cython
sudo -H pip3 install --pre --extra-index-url https://developer.download.nvidia.com/compute/redist/jp/v44 tensorflow

keras

sudo -H pip3 install keras

その他

sudo -H pip3 install sklearn pandas matplotlib setuptools

tensorboard

tensorboard --bind_all --logdir ./mylog

--bind_all をつけると、localhost以外からでも見れる

OpenCV

import cv2
cv2.__version__

4.1.1が入ってた

cudaのサンプル

cp -r /usr/local/cuda-**/sample ~/
cd ~/sample
make -j4

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?