URL: https://docs.radxa.com/dragon/q6a/app-dev/npu-dev/qai-appbuilder
Time: 4/3/2026, 11:38:58 AM
In step 1.5 "Create QAIRT SDK LIB Symlink" after installing wheel the current dir is ai-engine-direct-helper/dist, so making simlink fails with error
$ ln -s qairt/2.37.1.250807/lib/aarch64-oe-linux-gcc11.2/ ai-engine-direct-helper/samples/python/qai_libs
ln: failed to create symbolic link 'ai-engine-direct-helper/samples/python/qai_libs': No such file or directory
Also I think it would be much better to specify full path to qairt/2.37.1.250807/lib/aarch64-oe-linux-gcc11.2 using $QAIRT_SDK_ROOT (it was initialized by source bin/envsetup.sh). So the correct command could be kind of
cd ../../
ln -s $QAIRT_SDK_ROOT/lib/aarch64-oe-linux-gcc11.2 ai-engine-direct-helper/samples/python/qai_libs
URL: https://docs.radxa.com/dragon/q6a/app-dev/npu-dev/qai-appbuilder
Time: 4/3/2026, 11:38:58 AM
In step 1.5 "Create QAIRT SDK LIB Symlink" after installing wheel the current dir is
ai-engine-direct-helper/dist, so making simlink fails with errorAlso I think it would be much better to specify full path to qairt/2.37.1.250807/lib/aarch64-oe-linux-gcc11.2 using $QAIRT_SDK_ROOT (it was initialized by
source bin/envsetup.sh). So the correct command could be kind of