Matplotlib, numpy installation errors,stucks

Hello everyone I am trying to deploy yolov5 on my jetson tx2. I am having troubles at installing requirements. https://github.com/ultralytics/yolov5/blob/master/requirements.txt . I cannot even install numpy matplotlib etc. Pip3 freezes and nothing happens. Anything I can do?

Hi,

Some python module (like numpy) installation will need to build from source.
So it may take time to finish (in hours).

Thanks.

So is matplotlib also same?

Hi,

For matplotlib, please try the following command:

$ sudo apt-get install python3-matplotlib

Thanks.