Skip to content

Commit 86d24b3

Browse files
authored
Merge pull request numpy#206 from rgommers/fix-typos
Fix two typos in the install guide
2 parents cab6b31 + 8d5abc6 commit 86d24b3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/en/installing-python-and-numpy-guide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ On all of Windows, macOS and Linux:
3737
#### Windows or macOS
3838

3939
- Install [Miniconda](https://docs.conda.io/en/latest/miniconda.html)
40-
- Keep the `base` conda environment minimal, and use one or more
40+
- Keep the `base` conda environment minimal, and use one or more
4141
[conda environments](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#)
4242
to install the package you need for the task or project you're working on.
4343
- Unless you're fine with only the packages in the `defaults` channel, make `conda-forge`
@@ -54,15 +54,15 @@ able to use the latest versions of libraries:
5454

5555
If you use a GPU:
5656
- Install [Miniconda](https://docs.conda.io/en/latest/miniconda.html)
57-
- Keep the `base` conda environment minimal, and use one or more
57+
- Keep the `base` conda environment minimal, and use one or more
5858
[conda environments](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#)
5959
to install the package you need for the task or project you're working on.
6060
- Use the `defaults` conda channel (`conda-forge` doesn't have good support for
6161
GPU packages yet)
6262

6363
Otherwise:
6464
- Install [Miniforge](https://github.com/conda-forge/miniforge)
65-
- Keep the `base` conda environment minimal, and use one or more
65+
- Keep the `base` conda environment minimal, and use one or more
6666
[conda environments](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#)
6767
to install the package you need for the task or project you're working on.
6868

@@ -173,7 +173,7 @@ now have two copies of OpenBLAS on disk.
173173
In the Conda defaults channel, NumPy is built against Intel MKL. MKL is a
174174
separate package that will be installed in the user's environment when she
175175
installs NumPy. That MKL package is a lot larger than OpenBLAS, several hundred
176-
MB. MKL is typically a little faster and more robust than OpenBLAS.
176+
MB. MKL is typically a little faster and more robust than OpenBLAS.
177177

178178
In the conda-forge channel, NumPy is built against a dummy "BLAS" package. When
179179
the user install NumPy from conda-forge, that BLAS package then gets installed
@@ -189,8 +189,8 @@ consider:
189189
- Both MKL and OpenBLAS will use multi-threading for function calls like
190190
`np.dot`, with the number of threads being determined by both a build-time
191191
option and an environment variable. Often all CPU cores will be used. This is
192-
sometimes unexpected for users; NumPy itself doesn't auto-parallize any
192+
sometimes unexpected for users; NumPy itself doesn't auto-parallelize any
193193
function calls. It can also be harmful for performance, for example when
194-
using another level of parallellization manually or with, e.g. Dask or
194+
using another level of parallelization manually or with, e.g. Dask or
195195
scikit-learn functionality.
196196

0 commit comments

Comments
 (0)