Skip to content

Add Intel channel for installing wheels #1860

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 9, 2024
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ conda install dpctl -c https://software.repos.intel.com/python/conda/ -c conda-f

## Pip

The `dpctl` can be installed using `pip` obtaining wheel packages from PyPi.
To install `dpctl` wheel package, run the following command:
The `dpctl` can be installed using `pip` obtaining wheel packages either from PyPi or from Intel(R) channel.
To install `dpctl` wheel package from Intel(R) channel, run the following command:

```bash
python -m pip install dpctl
python -m pip install --index-url https://software.repos.intel.com/python/pypi dpctl
```

Installing the bleeding edge
Expand Down
7 changes: 7 additions & 0 deletions docs/doc_sources/beginners_guides/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ Binary wheels are published with Python Package Index (https://pypi.org/project/

python -m pip install dpctl


Binary wheels of ``dpctl`` and its dependencies are also published on Intel(R) channel. To install from this non-default package index,
use

.. code-block:: bash
python -m pip install --index-url https://software.repos.intel.com/python/pypi dpctl

.. note::
As of April 2024, installation using ``pip`` on Linux* requires
that host operating system had ``libstdc++.so`` library version 6.0.29
Expand Down
Loading