Transformers’s pipeline error after install scikit-learn on Jetson Nano

Ketut Artayasa
Sharing while learning
Apr 14, 2023

--

Transformers’s pipeline and many others not working anymore after install scikit-learn as a picture below.

This is a simple solution you may try

Instead of installing scikit-learn via pip, install it directly from apt

sudo apt install python3-sklearn

Hopefully the problem is solved.

--

--