RKNN Module not found #130980
Unanswered
samarth1232
asked this question in
Programming Help
RKNN Module not found
#130980
Replies: 1 comment
-
|
Hey! The error usually happens because you're importing the wrong package on the board. On your RK3588, don't use: from rknn.api import RKNN # This is for x86 PC onlyUse this instead: from rknnlite.api import RKNNLite
Also make sure:
A clean reinstall in a fresh virtual env usually sorts it out. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to run a few ML models on an RK3588 using the RKNN toolkit, but I'm encountering an issue. Despite installing both the rknn-toolkit2 and rknn-toolkit-lite, I get the following error when I try to import the RKNN module in Python: ModuleNotFoundError: No module named 'rknn.api.rknn_log'. I've verified the installation and checked the directory structure, but the issue persists. Can anyone help me resolve this problem?
Beta Was this translation helpful? Give feedback.
All reactions