Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 526 Bytes

install_instructions_conda.rst

File metadata and controls

16 lines (11 loc) · 526 Bytes

Install conda using the miniforge installers (no administrator permission required). Then run:

.. prompt:: bash

  conda create -n sklearn-env -c conda-forge scikit-learn
  conda activate sklearn-env

In order to check your installation, you can use:

.. prompt:: bash

  conda list scikit-learn  # show scikit-learn version and location
  conda list               # show all installed packages in the environment
  python -c "import sklearn; sklearn.show_versions()"