Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,10 @@ guide](https://www.intel.com/content/www/us/en/developer/articles/guide/installa

## Conda

To install `dpctl` from the Intel(R) channel on Anaconda
cloud, use the following command:
To install `dpctl` from the Intel(R) conda channel, use the following command:

```bash
conda install dpctl -c intel
conda install dpctl -c https://software.repos.intel.com/python/conda/
```

## Pip
Expand Down
6 changes: 3 additions & 3 deletions docs/doc_sources/beginners_guides/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ ecosystem.
.. _conda_docs: https://docs.conda.io/projects/conda/en/stable/

Released versions of the package can be installed from the Intel channel, as
indicated by ``--channel intel`` option:
indicated by ``--channel`` option:

.. code-block:: bash
:caption: Getting latest released version of ``dpctl`` using conda

conda create --name dpctl_env --channel intel dpctl
conda create --name dpctl_env --channel https://software.repos.intel.com/python/conda/ dpctl

Development builds of ``dpctl`` can be accessed from the ``dppy/label/dev`` channel:

.. code-block:: bash
:caption: Getting latest development version

conda create -n dpctl_nightly -c dppy/label/dev -c intel dpctl
conda create -n dpctl_nightly -c dppy/label/dev -c https://software.repos.intel.com/python/conda/ dpctl

.. note::
If :py:mod:`dpctl` is not available for the Python version of interest,
Expand Down