You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/installation.rst
+36-3Lines changed: 36 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,9 +60,9 @@ run:
60
60
Anaconda installation
61
61
=====================
62
62
63
-
Anaconda does not ship *auto-sklearn*, and there are no conda packages for
64
-
*auto-sklearn*. Thus, it is easiest to install *auto-sklearn* as detailed in
65
-
the Section `Installing auto-sklearn`_.
63
+
You need to enable conda-forge to install *auto-sklearn* via anaconda. This section explains how to enable conda-forge so
64
+
installation can be done with the command `conda install auto-sklearn`.
65
+
Optionally, you can also install *auto-sklearn* with `pip` as detailed in the Section `Installing auto-sklearn`_.
66
66
67
67
A common installation problem under recent Linux distribution is the
68
68
incompatibility of the compiler version used to compile the Python binary
@@ -75,6 +75,38 @@ be solved by installing the *gcc* compiler shipped with AnaConda (as well as
75
75
conda install gxx_linux-64 gcc_linux-64 swig
76
76
77
77
78
+
Conda-forge
79
+
~~~~~~~~~~~
80
+
81
+
Installing `auto-sklearn` from the `conda-forge` channel can be achieved by adding `conda-forge` to your channels with:
82
+
83
+
.. code:: bash
84
+
85
+
conda config --add channels conda-forge
86
+
87
+
conda config --set channel_priority strict
88
+
89
+
90
+
You must have `conda >=4.9`. To update conda or check your current conda version, please follow the instructions from `the official anaconda documentation <https://docs.anaconda.com/anaconda/install/update-version/>`_ . Once the `conda-forge` channel has been enabled, `auto-sklearn` can be installed with:
91
+
92
+
.. code:: bash
93
+
94
+
conda install auto-sklearn
95
+
96
+
97
+
It is possible to list all of the versions of `auto-sklearn` available on your platform with:
0 commit comments