Skip to content

Commit b7cb53d

Browse files
Merge pull request #1754 from IntelPython/fix-for-gh-1749
Fix for gh 1749
2 parents 7450558 + c1b0b18 commit b7cb53d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ guide](https://www.intel.com/content/www/us/en/developer/articles/guide/installa
6767
To install `dpctl` from the Intel(R) conda channel, use the following command:
6868

6969
```bash
70-
conda install dpctl -c https://software.repos.intel.com/python/conda/
70+
conda install dpctl -c https://software.repos.intel.com/python/conda/ -c conda-forge
7171
```
7272

7373
## Pip
@@ -86,7 +86,7 @@ To try out the latest features, install `dpctl` from our
8686
development channel on Anaconda cloud:
8787

8888
```bash
89-
conda install dpctl -c dppy/label/dev
89+
conda install dpctl -c dppy/label/dev -c conda-forge
9090
```
9191

9292
# Building
@@ -116,7 +116,8 @@ To run the tests, use:
116116
pytest --pyargs dpctl
117117
```
118118

119-
Running full test suite requires working C/C++ compiler. To run the test suite without one, use:
119+
Running full test suite requires working C/C++ compiler and installed Cython package.
120+
To run the test suite without these, use:
120121

121122
```bash
122123
pytest --pyargs dpctl -k "not test_cython_api and not test_c_headers"

docs/doc_sources/beginners_guides/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ indicated by ``--channel`` option:
3030
.. code-block:: bash
3131
:caption: Getting latest released version of ``dpctl`` using conda
3232
33-
conda create --name dpctl_env --channel https://software.repos.intel.com/python/conda/ dpctl
33+
conda create --name dpctl_env --channel https://software.repos.intel.com/python/conda/ --channel conda-forge dpctl
3434
3535
Development builds of ``dpctl`` can be accessed from the ``dppy/label/dev`` channel:
3636

3737
.. code-block:: bash
3838
:caption: Getting latest development version
3939
40-
conda create -n dpctl_nightly -c dppy/label/dev -c https://software.repos.intel.com/python/conda/ dpctl
40+
conda create -n dpctl_nightly -c dppy/label/dev -c https://software.repos.intel.com/python/conda/ -c conda-forge dpctl
4141
4242
.. note::
4343
If :py:mod:`dpctl` is not available for the Python version of interest,

0 commit comments

Comments
 (0)