PYNQ-Z1 error use pip and install sklearn

I try to install sklearn (GitHub - sfox14/pynq-sklearn: Library for PYNQ-based ML accelerators) but I got these errors:


I try it on image v2.4 and v2.3 and Ethernet Connect to a Computer but also with Connect to a Network Router
Do you know how to solve the problem?
Thanks in advance.

Solved: pip is for python 2.7 and pynq use python 3 (3.6.5), so you need to use pip3
Correct: pip3 install scikit-learn

1 Like