NVIDIA Jetson Xavier
使用的aarch64架构是没法使用anaconda的,虽然可以自己编译,但是conda指令是没法编译到aarch64架构上运行的。不过有替代品,名字是miniforge。

miniforge下载

进行安装

 sh Mambaforge-4.9.2-7-Linux-aarch64_2.sh 

过程
在这里插入图片描述
回车继续

在这里插入图片描述
输入yes

在这里插入图片描述
安装完成,如果想自动进入base环境

conda config --set auto_activate_base true

创建虚拟环境

清华镜像源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes

新建python3.6的环境

conda create -n yolo python=3.6

在这里插入图片描述
在这里插入图片描述
查看conda下的环境

conda env list

在这里插入图片描述
运行yolo环境

conda activate yolo

安装相关包
keras 2.1.5

pip install -i https://pypi.douban.com/simple Keras==2.1.5

tensorflow 1.14.1

pip install -i https://pypi.douban.com/simple Keras==2.1.5