From 8f819c055a1993e281d6626e534d2a10f0283f79 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Wed, 18 Aug 2021 13:42:44 -0500 Subject: [PATCH] Fixed typo in pip installation instruction. Fixes #525 Double dash was needed instead of single dash in front of extra-index-url option --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2c54a35b4..30596389af 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Install Wheel Package from Pypi ================================== 1. Install dpctl ```cmd -python -m pip install --index-url https://pypi.anaconda.org/intel/simple -extra-index-url https://pypi.org/simple dpctl +python -m pip install --index-url https://pypi.anaconda.org/intel/simple --extra-index-url https://pypi.org/simple dpctl ``` Note: dpctl wheel package is placed on Pypi, but some of its dependencies (like Intel numpy) are in Anaconda Cloud. That is why install command requires additional intel Pypi channel from Anaconda Cloud.