jetson nano是aarm64架构,很多python三方库不能直接pip install,以下几个机器学习常用三方库安装方式:
sudo apt-get install python3-numpy
sudo apt-get install python3-scipy
sudo apt-get install python3-pandas
sudo apt-get install python3-matplotlib
sudo apt-get install python3-sklearn
opencv-python是已经装好的,不需要另外安装,TensorFlow安装方式如下:
先安装依赖:
sudo apt-get install python3-pip libhdf5-serial-dev hdf5-tools
sudo pip3 install -U numpy grpcio absl-py py-cpuinfo psutil portpicker grpcio six mock requests gast h5py astor termcolor
再安装TensorFlow:
sudo pip3 install --extra-index-url https://developer.download.nvidia.com/compute/redist/jp/v42 tensorflow-gpu==1.13.1+nv19.3 --user

介绍了jetson nano(aarm64架构)上机器学习常用三方库的安装方式。指出opencv - python已预装,无需额外安装,还说明了TensorFlow的安装需先安装依赖,再进行安装。
2200

被折叠的 条评论
为什么被折叠?



