Skip to content

Commit 132fb18

Browse files
authored
Add Intel channel for installing wheels
1 parent bbcf205 commit 132fb18

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,17 @@ or from conda forge channel:
2323
To install mkl_random Pypi package please use following command:
2424

2525
```
26-
python -m pip install mkl_random
26+
python -m pip install -i https://software.repos.intel.com/python/pypi --extra-index-url https://pypi.org/simple mkl_random
2727
```
2828

29+
If command above installs NumPy package from the Pypi, please use following command to install Intel optimized NumPy wheel package from Intel Pypi Cloud:
30+
31+
```
32+
python -m pip install -i https://software.repos.intel.com/python/pypi --extra-index-url https://pypi.org/simple mkl_random numpy==<numpy_version>
33+
```
34+
35+
Where `<numpy_version>` should be the latest version from [https://anaconda.org/intel/numpy](https://software.repos.intel.com/python/conda/)
36+
2937
---
3038

3139
`mkl_random` is not fixed-seed backward compatible drop-in replacement for `numpy.random`, meaning that it implements sampling from the same distributions as `numpy.random`.

0 commit comments

Comments
 (0)