arm平台如何创建conda虚拟环境

下载Archiconda并安装

wget https://github.com/Archiconda/build-tools/releases/download/0.2.3/Archiconda3-0.2.3-Linux-aarch64.sh
sudo sh Archiconda3-0.2.3-Linux-aarch64.sh

初始化环境选择yes

Do you wish the installer to initialize Archiconda3
in your /home/firefly/.bashrc ? [yes|no]
[no] >>> yes

然后激活环境变量

source .bashrc

新建虚拟环境

conda create -n rknn python=3.7

你可能感兴趣的:(conda)