How to use sklearn in julia

Hello, when installing a package I got the error:

The Python package sklearn could not be imported by pyimport. Usually this means
that you did not install sklearn in the Python version being used by PyCall.

So I install sklearn to python, cmd ‘python -m pip show scikit-learn’ shows I have it.
I use ‘’'ENV[“PYTHON”]=“” to the result I get when I use “where python” in cmd (I tried both results) and Pkg.build(“PyCall”) as other questions suggested, but this yields a StackOverflowError

Does anybody know how to install sklearn such that I can install some packages? Thanks in advance.

Install the ScikitLearn.jl package with the Julia package manager:

using Pkg

Pkg.add("ScikitLearn")

and read the documentation: