Urgent Help Needed, Need to install on Headless OpenCv on Jetson Nano

I am trying to download opencv and albumentations. To download albumentations and imguag, you need open cv headless, open cv contrib.

I followed the steps in this link: Imgaug on Jetson Nano.

However this does not. I downgraded pip to version 19, changed setup.py, and it continues to return errors.
I also tried to the same process with pip version 20, and it returns even more errors.

I have one jetson nano

Duplicated with Installing OpenCv Headless

In case of someone coming across this thread with the same problem, I seem to find a pretty successful way to install albumentations (starting from recent version 1.0) on the Jetson Nano with the following sequence of commands:

sudo apt-get install nvidia-opencv python3-numpy python3-scipy
pip3 install --no-deps scikit-image albumentations

So you’re not going to install opencv-python-headless this way, as it can just use the system OpenCV version. Can’t guarantee, that the whole functionality of albumentations work, but my pipeline with a number of transformations and bounding box format conversion seems to work fine.