File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
docs/doc_sources/beginners_guides Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ guide](https://www.intel.com/content/www/us/en/developer/articles/guide/installa
67
67
To install ` dpctl ` from the Intel(R) conda channel, use the following command:
68
68
69
69
``` 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
71
71
```
72
72
73
73
## Pip
@@ -86,7 +86,7 @@ To try out the latest features, install `dpctl` from our
86
86
development channel on Anaconda cloud:
87
87
88
88
``` bash
89
- conda install dpctl -c dppy/label/dev
89
+ conda install dpctl -c dppy/label/dev -c conda-forge
90
90
```
91
91
92
92
# Building
@@ -116,7 +116,8 @@ To run the tests, use:
116
116
pytest --pyargs dpctl
117
117
```
118
118
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:
120
121
121
122
``` bash
122
123
pytest --pyargs dpctl -k " not test_cython_api and not test_c_headers"
Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ indicated by ``--channel`` option:
30
30
.. code-block :: bash
31
31
:caption: Getting latest released version of ` ` dpctl` ` using conda
32
32
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
34
34
35
35
Development builds of ``dpctl `` can be accessed from the ``dppy/label/dev `` channel:
36
36
37
37
.. code-block :: bash
38
38
:caption: Getting latest development version
39
39
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
41
41
42
42
.. note ::
43
43
If :py:mod: `dpctl ` is not available for the Python version of interest,
You can’t perform that action at this time.
0 commit comments