Skip to content

Commit bba05d8

Browse files
Corrected pip installation instruction in README
1 parent f0ff78c commit bba05d8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## ``mkl_fft`` -- a NumPy-based Python interface to Intel (R) MKL FFT functionality
22
[![Build Status](https://travis-ci.com/IntelPython/mkl_fft.svg?branch=master)](https://travis-ci.com/IntelPython/mkl_fft)
33

4-
`mkl_fft` started as a part of Intel (R) Distribution for Python* optimizations to NumPy, and is now being released
5-
as a stand-alone package. It can be installed into conda environment using
4+
`mkl_fft` started as a part of Intel (R) Distribution for Python* optimizations to NumPy, and is now being released
5+
as a stand-alone package. It can be installed into conda environment using
66

77
```
88
conda install -c intel mkl_fft
@@ -13,21 +13,21 @@ as a stand-alone package. It can be installed into conda environment using
1313
To install mkl_fft Pypi package please use following command:
1414

1515
```
16-
python -m pip install --i https://pypi.anaconda.org/intel/simple -extra-index-url https://pypi.org/simple mkl_fft
16+
python -m pip install --index-url https://pypi.anaconda.org/intel/simple --extra-index-url https://pypi.org/simple mkl_fft
1717
```
1818

1919
If command above installs NumPy package from the Pypi, please use following command to install Intel optimized NumPy wheel package from Anaconda Cloud:
2020

2121
```
22-
python -m pip install --i https://pypi.anaconda.org/intel/simple -extra-index-url https://pypi.org/simple mkl_fft numpy==<numpy_version>
22+
python -m pip install --index-url https://pypi.anaconda.org/intel/simple --extra-index-url https://pypi.org/simple mkl_fft numpy==<numpy_version>
2323
```
2424

2525
Where `<numpy_version>` should be the latest version from https://anaconda.org/intel/numpy
2626

2727
---
2828

2929
Since MKL FFT supports performing discrete Fourier transforms over non-contiguously laid out arrays, MKL can be directly
30-
used on any well-behaved floating point array with no internal overlaps for both in-place and not in-place transforms of
30+
used on any well-behaved floating point array with no internal overlaps for both in-place and not in-place transforms of
3131
arrays in single and double floating point precision.
3232

3333
This eliminates the need to copy input array contiguously into an intermediate buffer.
@@ -70,9 +70,9 @@ It implements the following functions:
7070

7171
The package also provides `mkl_fft._numpy_fft` and `mkl_fft._scipy_fft` interfaces which provide drop-in replacements for equivalent functions in NumPy and SciPy respectively.
7272

73-
---
73+
---
7474

7575
To build ``mkl_fft`` from sources on Linux:
7676
- install a recent version of MKL, if necessary;
77-
- execute ``source /path/to/mklroot/bin/mklvars.sh intel64`` ;
77+
- execute ``source /path/to/mklroot/bin/mklvars.sh intel64`` ;
7878
- execute ``pip install .``

0 commit comments

Comments
 (0)