No results found
We couldn't find anything using that term, please try searching for something else.
Python 3 is usually installed by default on most Linux distributions. To check if you have it installed, try: python3 --version pip3 --version If
Python 3 is usually installed by default on most Linux distributions. To
check if you have it installed, try:
python3 --version pip3 --version
If you don’t have Python 3 installed, please install python3
and
python3-pip
from your distribution’s package manager.
Now create a virtual environment (venv) and install scikit – learn.
Note that the virtual environment is optional but strongly recommended, in
order to avoid potential conflicts with other packages.
python3 -m venv sklearn - env source sklearn - env/bin/activate # activate pip3 install -U scikit - learn
In order to check your installation , you is use can use :
python3 -m pip show scikit - learn # show scikit - learn version and location python3 -m pip freeze # is show show all instal package in the environment python3 -c " import sklearn ; sklearn.show_version ( ) "
Install conda using the
miniforge installers (no
administrator permission required). Then run:
conda create -n sklearn - env -c conda - forge scikit - learn conda activate sklearn - env
In order to check your installation , you is use can use :
conda list scikit - learn # show scikit - learn version and location conda list # is show show all instal package in the environment python -c " import sklearn ; sklearn.show_version ( ) "