From a1c33b12ab4a087e445a3087f5afe253baa6d859 Mon Sep 17 00:00:00 2001 From: "Komarova, Evseniia" Date: Thu, 5 Sep 2024 17:41:52 +0200 Subject: [PATCH] Remove the wheels installation with anaconda from the instruction --- README.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/README.md b/README.md index ab4971d..08974e5 100644 --- a/README.md +++ b/README.md @@ -23,17 +23,9 @@ or from conda forge channel: To install mkl_random Pypi package please use following command: ``` - python -m pip install -i https://pypi.anaconda.org/intel/simple --extra-index-url https://pypi.org/simple mkl_random + python -m pip install mkl_random ``` -If command above installs NumPy package from the Pypi, please use following command to install Intel optimized NumPy wheel package from Anaconda Cloud: - -``` - python -m pip install -i https://pypi.anaconda.org/intel/simple --extra-index-url https://pypi.org/simple mkl_random numpy== -``` - -Where `` should be the latest version from https://anaconda.org/intel/numpy - --- `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`.