From 14f71cb11d5fbbe389f8a93a87d681320e1474f3 Mon Sep 17 00:00:00 2001 From: Julien Jerphanion Date: Sat, 9 Dec 2023 21:21:19 +0100 Subject: [PATCH] DOC - Add installation instructions for conda-forge Signed-off-by: Julien Jerphanion --- README.md | 4 ++-- doc/getting_started.rst | 6 +++--- doc/index.rst | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6e46f098b..2b3a52cc9 100644 --- a/README.md +++ b/README.md @@ -45,10 +45,10 @@ There are several reasons to opt for ``skglm`` among which: pip install -U skglm ``` -It is also available on Conda _(not yet, but very soon...)_ and can be installed via the command +It is also available on conda-forge and can be installed using, for instance: ```shell -conda install skglm +conda install -c conda-forge skglm ``` ## First steps with ``skglm`` diff --git a/doc/getting_started.rst b/doc/getting_started.rst index b2121f636..f26472720 100644 --- a/doc/getting_started.rst +++ b/doc/getting_started.rst @@ -18,11 +18,11 @@ Beforehand, make sure that you have already installed ``skglm`` .. code-block:: shell - # using pip + # Installing from PyPI using pip pip install -U skglm - # using conda - conda install skglm + # Installing from conda-forge using conda + conda install -c conda-forge skglm ------------------------- diff --git a/doc/index.rst b/doc/index.rst index 9cd10bcce..194a2e4b7 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -48,11 +48,11 @@ Installing ``skglm`` $ pip install -U skglm -It is also available on Conda and can be installed via the command +It is also available on conda-forge and can be installed using, for instance: .. code-block:: shell - $ conda install skglm + $ conda install -c conda-forge skglm With ``skglm`` being installed, Get the first steps with the package via the :ref:`Getting started section `. Other advanced topics and uses-cases are covered in :ref:`Tutorials `.