@@ -19,25 +19,26 @@ See the user guide :ref:`document <user_guide_dpctl_license>` for additional inf
19
19
Installation using conda
20
20
========================
21
21
22
- Binary builds of :py:mod: `dpctl ` are available for the `conda package manager < conda_docs _>`_
23
- ecosystem .
22
+ Binary builds of :py:mod: `dpctl ` can be installed through the `` conda ``/`` mamba `` package managers,
23
+ from either the `` conda-forge `` channel, or from Intel's channel .
24
24
25
- .. _conda_docs : https://docs.conda.io/projects/conda/en/stable/
26
-
27
- Released versions of the package can be installed from the Intel channel, as
28
- indicated by ``--channel `` option:
25
+ .. warning ::
26
+ Packages from the Intel channel are meant to be used together with dependencies from the **conda-forge ** channel, and might not
27
+ work correctly when used in an environment where packages from the ``anaconda `` default channel have been installed. It is
28
+ advisable to use the `miniforge <https://github.com/conda-forge/miniforge >`__ installer for ``conda ``/``mamba ``, as it comes with
29
+ ``conda-forge `` as the only default channel.
29
30
30
31
.. code-block :: bash
31
32
:caption: Getting latest released version of ` ` dpctl` ` using conda
32
33
33
- conda create --name dpctl_env --channel https://software.repos.intel.com/python/conda/ --channel conda-forge dpctl
34
+ conda create --name dpctl_env --channel https://software.repos.intel.com/python/conda/ --channel conda-forge --override-channels dpctl
34
35
35
- Development builds of ``dpctl `` can be accessed from the ``dppy/label/dev `` channel:
36
+ Development builds of ``dpctl `` can be installed from the ``dppy/label/dev `` channel:
36
37
37
38
.. code-block :: bash
38
39
:caption: Getting latest development version
39
40
40
- conda create -n dpctl_nightly -c dppy/label/dev -c https://software.repos.intel.com/python/conda/ -c conda-forge dpctl
41
+ conda create -n dpctl_nightly -c dppy/label/dev -c https://software.repos.intel.com/python/conda/ -c conda-forge --override-channels dpctl
41
42
42
43
.. note ::
43
44
If :py:mod: `dpctl ` is not available for the Python version of interest,
0 commit comments