So I have already integrated BNO055 to my jetson nano in sudo installations.
I have run codes and imported the libraries, adafruit_bno055, board, and busio.
Well, today I tried creating a Python3.8 virtual environment for my other application. In the vEnv, I installed the bno055 by writing out pip3 install adafruit_circuitpython-bno055 – this is the only installation for the bno055. I used this for the sudo, too
I was able to import adafruit_bno055, the only problem is that when it comes to import board and import busio, I get this error of no Module Named Jetson as shown in the picture below.
Hi, solved this one by going to the root cause.
I went to the pin.py file of my virtual environment. venv/lib/python3.8/site-packages/adafruit_blinka/microcontroller/tegra/210/pin.py
I somehow changed the import to **import Jetson.GPIO as GPIO
then i did pip3 install Jetson.GPIO in the venv.
then just typed these commands to allow usage of the library