Skip to content
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

Remove the wheels installation with anaconda from the instruction #1819

Merged
merged 1 commit into from
Sep 3, 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 either from PyPi or from Intel(R) channel on Anaconda.
To install `dpctl` wheel package from Intel(R) channel on Anaconda, run the following command:
The `dpctl` can be installed using `pip` obtaining wheel packages from PyPi.
To install `dpctl` wheel package, run the following command:

```bash
python -m pip install --index-url https://pypi.anaconda.org/intel/simple dpctl
python -m pip install dpctl
```

Installing the bleeding edge
Expand Down
8 changes: 0 additions & 8 deletions docs/doc_sources/beginners_guides/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,6 @@ 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
http://anaconda.org/intel. To install from this non-default package index,
use

.. code-block:: bash

python -m pip install --index-url https://pypi.anaconda.org/intel/simple 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