feitgemel / Jetson-Nano-Python

Jetson-Nano-Python
16 stars 13 forks source link

numpy-1.19.4-cp36-none-manylinux2014_aarch64.whl not found #2

Open yash1112 opened 2 years ago

yash1112 commented 2 years ago

Thanks for creating this guide to install mediapipe on jetson nano

While installing mediapipe on jetson, I encountered this issue in last step The reason probably was "https://github.com/PINTO0309/mediapipe-bin", repository has been modified and "numpy-1.19.4-cp36-none-manylinux2014_aarch64.whl" is not available there.

I skipped this step and directly installed "mediapipe-0.8.5_cuda102-cp36-cp36m-linux_aarch64.whl". The installation was successful, but when I tried to use face detection and I got the following error: " Can't find file: mediapipe/modules/face_detection/face_detection_front.tflite "

Can you please help me resolve this issue?

feitgemel commented 2 years ago

Hi Never saw this error.

  1. Download and extract the zip file and install from here : https://github.com/PINTO0309/mediapipe-bin/releases/download/v0.8.5/v0.8.5.zip

  2. As for this specific error. Just suggestion : try install the missing part.

pip install face-detection-tflite

Eran

Sent from my iPhone

On 28 Mar 2022, at 9:38, yash1112 @.***> wrote:

Can't find file: mediapipe/modules/face_detection/face_detection_front.tflite

paulnegz commented 2 years ago

Hi I got a similar error to @yash1112 I used the link https://github.com/PINTO0309/mediapipe-bin/releases/ and downloaded the source code and I was able to find "numpy-1.19.4-cp36-none-manylinux2014_aarch64.whl" However, I when I try sudo pip3 install numpy-1.19.4-cp36-none-manylinux2014_aarch64.whl mediapipe-0.8.5_cuda102-cp36-none-linux_aarch64.whl I get a file is not a zip file error shown in the picture media_nano_error

paulnegz commented 2 years ago

Do you have your numpy-1.19.4-cp36-none-manylinux2014_aarch64.whl mediapipe-0.8.5_cuda102-cp36-none-linux_aarch64.whl files and can you upload them

yash1112 commented 2 years ago

Do you have your numpy-1.19.4-cp36-none-manylinux2014_aarch64.whl mediapipe-0.8.5_cuda102-cp36-none-linux_aarch64.whl files and can you upload them

seems like "numpy-1.19.4-cp36-none-manylinux2014_aarch64.whl" is not needed anymore, and you will get "mediapipe-0.8.5_cuda102-cp36-none-linux_aarch64.whl" after executing ./v0.8.5/download.sh

I checked it on my board, it works

yash1112 commented 2 years ago

Hi Never saw this error. 1. Download and extract the zip file and install from here : https://github.com/PINTO0309/mediapipe-bin/releases/download/v0.8.5/v0.8.5.zip 2. As for this specific error. Just suggestion : try install the missing part. pip install face-detection-tflite Eran Sent from my iPhone On 28 Mar 2022, at 9:38, yash1112 @.***> wrote: Can't find file: mediapipe/modules/face_detection/face_detection_front.tflite

Thank a lot @feitgemel

yash1112 commented 2 years ago

After setup mediapipe was working properly on jetson nano with USB camera, but I was not able to use it with RPi camera. The problem is "mediapipe-0.8.5_cuda102-cp36-none-linux_aarch64.whl" also installs "opencv-contrib-python" and this disables the gstreamer in python3 opencv. Is there any way to fix this issue. Any help you could provide would be much appreciated.

AsDmitrij commented 2 years ago

After setup mediapipe was working properly on jetson nano with USB camera, but I was not able to use it with RPi camera. The problem is "mediapipe-0.8.5_cuda102-cp36-none-linux_aarch64.whl" also installs "opencv-contrib-python" and this disables the gstreamer in python3 opencv. Is there any way to fix this issue. Any help you could provide would be much appreciated.

Hi, i have this problem too, i try to find other wheels, which not installs opencv-contrib-python, but there are no new one. Also i try to build according this tuturial: https://github.com/yockgen/mediapipe_jetson_nano, and i have new problem with bazel and with it install accrording this documentation: https://docs.bazel.build/versions/main/install-ubuntu.html. So now i have no idea how to build mediapipe manually. Please, if you find solution can you write about it?

paulnegz commented 2 years ago

Do you have your numpy-1.19.4-cp36-none-manylinux2014_aarch64.whl mediapipe-0.8.5_cuda102-cp36-none-linux_aarch64.whl files and can you upload them

seems like "numpy-1.19.4-cp36-none-manylinux2014_aarch64.whl" is not needed anymore, and you will get "mediapipe-0.8.5_cuda102-cp36-none-linux_aarch64.whl" after executing ./v0.8.5/download.sh

I checked it on my board, it works

After ./v0.8.5/download.sh I get mediapipe-0.8.5_cuda102-cp36-cp36m-linux_aarch64.whl instead of mediapipe-0.8.5_cuda102-cp36-none-linux_aarch64.whl When I install mediapipe-0.8.5_cuda102-cp36-cp36m-linux_aarch64.whl I get a GetResourceContents failed: can't find file palm_detection.tflite, pose_detection.tflite and hand_landmark.tflite

cujino commented 1 year ago

Hi Never saw this error. 1. Download and extract the zip file and install from here : https://github.com/PINTO0309/mediapipe-bin/releases/download/v0.8.5/v0.8.5.zip 2. As for this specific error. Just suggestion : try install the missing part. pip install face-detection-tflite Eran

Man, I've been going in circles around this one, hope you can help. I downloaded and extracted the files. Then I try to run the sudo pip3 install numpy-1.19.4-cp36-none-manylinux2014_aarch64.whl and get the no such file or directory.

Can you maybe describe the solution a bit more detailed? I am wondering if I am making some kind of silly error.

Thank you.