Skip to content

Commit cda4ca9

Browse files
authored
Merge pull request #832
update the numpy installation page with tab based navigation
2 parents 26a6236 + a487d5a commit cda4ca9

File tree

1 file changed

+84
-159
lines changed

1 file changed

+84
-159
lines changed

content/en/install.md

+84-159
Original file line numberDiff line numberDiff line change
@@ -2,195 +2,120 @@
22
title: Installing NumPy
33
sidebar: false
44
---
5-
5+
{{< admonition tip >}}
6+
This page assumes you are comfortable using a terminal and are familiar with package managers.
67
The only prerequisite for installing NumPy is Python itself. If you don't have
78
Python yet and want the simplest way to get started, we recommend you use the
89
[Anaconda Distribution](https://www.anaconda.com/download) - it includes
910
Python, NumPy, and many other commonly used packages for scientific computing
1011
and data science.
12+
{{< /admonition >}}
1113

12-
NumPy can be installed with `conda`, with `pip`, with a package manager on
13-
macOS and Linux, or [from source](https://numpy.org/devdocs/building).
14-
For more detailed instructions, consult our [Python and NumPy
15-
installation guide](#python-numpy-install-guide) below.
16-
17-
**CONDA**
18-
19-
If you use `conda`, you can install NumPy from the `defaults` or `conda-forge`
20-
channels:
21-
22-
```bash
23-
# Best practice, use an environment rather than install in the base env
24-
conda create -n my-env
25-
conda activate my-env
26-
# If you want to install from conda-forge
27-
conda config --env --add channels conda-forge
28-
# The actual install command
29-
conda install numpy
30-
```
31-
32-
**PIP**
33-
34-
If you use `pip`, you can install NumPy with:
35-
36-
```bash
37-
pip install numpy
38-
```
39-
Also when using pip, it's good practice to use a virtual environment -
40-
see [Reproducible Installs](#reproducible-installs) below for why, and
41-
[this guide](https://dev.to/bowmanjd/python-tools-for-managing-virtual-environments-3bko#howto)
42-
for details on using virtual environments.
43-
44-
45-
<a name="python-numpy-install-guide"></a>
46-
# Python and NumPy installation guide
47-
48-
Installing and managing packages in Python is complicated, there are a
49-
number of alternative solutions for most tasks. This guide tries to give the
50-
reader a sense of the best (or most popular) solutions, and give clear
51-
recommendations. It focuses on users of Python, NumPy, and the PyData (or
52-
numerical computing) stack on common operating systems and hardware.
53-
54-
## Recommendations
55-
56-
We'll start with recommendations based on the user's experience level and
57-
operating system of interest. If you're in between "beginning" and "advanced",
58-
please go with "beginning" if you want to keep things simple, and with
59-
"advanced" if you want to work according to best practices that go a longer way
60-
in the future.
14+
The recommended method of installing NumPy depends on your preferred workflow. Below, we break down the installation methods into the following categories:
6115

62-
### Beginning users
16+
- **Project-based** (e.g., uv, pixi) *(recommended for new users)*
17+
- **Environment-based** (e.g., pip, conda) *(the traditional workflow)*
18+
- **System package managers** *(not recommended for most users)*
19+
- **Building from source** *(for advanced users and development purposes)*
6320

64-
On all of Windows, macOS, and Linux:
21+
Choose the method that best suits your needs. If you're unsure, start with the **Environment-based** method using `conda` or `pip`.
6522

66-
- Install [Anaconda](https://www.anaconda.com/download) (it installs all
67-
packages you need and all other tools mentioned below).
68-
- For writing and executing code, use notebooks in
69-
[JupyterLab](https://jupyterlab.readthedocs.io/en/stable/index.html) for
70-
exploratory and interactive computing, and
71-
[Spyder](https://www.spyder-ide.org/) or [Visual Studio Code](https://code.visualstudio.com/)
72-
for writing scripts and packages.
73-
- Use [Anaconda Navigator](https://docs.anaconda.com/anaconda/navigator/) to
74-
manage your packages and start JupyterLab, Spyder, or Visual Studio Code.
23+
Below are the different methods for **installing NumPy**. Click on the tabs to explore each method:
24+
{{< tabs >}}
7525

26+
[[tab]]
27+
name = 'Project Based'
28+
content = '''
7629

77-
### Advanced users
30+
Recommended for new users who want a streamlined workflow.
7831

79-
#### Conda
32+
- **uv:** A modern Python package manager designed for speed and simplicity.
33+
```bash
34+
uv pip install numpy
35+
```
8036

81-
- Install [Miniforge](https://github.com/conda-forge/miniforge).
82-
- Keep the `base` conda environment minimal, and use one or more
83-
[conda environments](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html)
84-
to install the package you need for the task or project you're working on.
37+
- **pixi:** A cross-platform package manager for Python and other languages.
38+
```bash
39+
pixi add numpy
40+
```
8541

86-
#### Alternative if you prefer pip/PyPI
42+
'''
8743

88-
For users who know, from personal preference or reading about the main
89-
differences between conda and pip below, they prefer a pip/PyPI-based solution,
90-
we recommend:
91-
- Install Python from [python.org](https://www.python.org/downloads/),
92-
[Homebrew](https://brew.sh/), or your Linux package manager.
93-
- Use [Poetry](https://python-poetry.org/) as the most well-maintained tool
94-
that provides a dependency resolver and environment management capabilities
95-
in a similar fashion as conda does.
44+
[[tab]]
45+
name = 'Environment Based'
46+
content = '''
9647

48+
The two main tools that install Python packages are `pip` and `conda`. Their functionality partially overlaps (e.g. both can install `numpy`), however, they can also work together. We’ll discuss the major differences between pip and conda here - this is important to understand if you want to manage packages effectively.
9749

98-
## Python package management
50+
The first difference is that conda is cross-language and it can install Python, while pip is installed for a particular Python on your system and installs other packages to that same Python install only. This also means conda can install non-Python libraries and tools you may need (e.g. compilers, CUDA, HDF5), while pip can’t.
9951

100-
Managing packages is a challenging problem, and, as a result, there are lots of
101-
tools. For web and general purpose Python development there's a whole
102-
[host of tools](https://packaging.python.org/guides/tool-recommendations/)
103-
complementary with pip. For high-performance computing (HPC),
104-
[Spack](https://github.com/spack/spack) is worth considering. For most NumPy
105-
users though, [conda](https://conda.io/en/latest/) and
106-
[pip](https://pip.pypa.io/en/stable/) are the two most popular tools.
52+
The second difference is that pip installs from the Python Packaging Index (PyPI), while conda installs from its own channels (typically “defaults” or “conda-forge”). PyPI is the largest collection of packages by far, however, all popular packages are available for conda as well.
10753

54+
The third difference is that conda is an integrated solution for managing packages, dependencies and environments, while with pip you may need another tool (there are many!) for dealing with environments or complex dependencies.
10855

109-
### Pip & conda
56+
- **Conda:** If you use conda, you can install NumPy from the defaults or conda-forge channels:
57+
```bash
58+
conda create -n my-env
59+
conda activate my-env
60+
conda install numpy
61+
```
62+
- **Pip:**
63+
```bash
64+
pip install numpy
65+
```
66+
{{< admonition tip >}}
67+
**Tip:** Use a virtual environment for better dependency management
68+
{{< /admonition >}}
11069

111-
The two main tools that install Python packages are `pip` and `conda`. Their
112-
functionality partially overlaps (e.g. both can install `numpy`), however, they
113-
can also work together. We'll discuss the major differences between pip and
114-
conda here - this is important to understand if you want to manage packages
115-
effectively.
70+
```bash
71+
python -m venv my-env
72+
source my-env/bin/activate # macOS/Linux
73+
my-env\Scripts\activate # Windows
74+
pip install numpy
75+
```
76+
'''
11677

117-
The first difference is that conda is cross-language and it can install Python,
118-
while pip is installed for a particular Python on your system and installs other
119-
packages to that same Python install only. This also means conda can install
120-
non-Python libraries and tools you may need (e.g. compilers, CUDA, HDF5), while
121-
pip can't.
78+
[[tab]]
79+
name = 'System Package Managers'
80+
content = '''
81+
Not recommended for most users, but available for convenience.
12282

123-
The second difference is that pip installs from the Python Packaging Index
124-
(PyPI), while conda installs from its own channels (typically "defaults" or
125-
"conda-forge"). PyPI is the largest collection of packages by far, however, all
126-
popular packages are available for conda as well.
127-
128-
The third difference is that conda is an integrated solution for managing
129-
packages, dependencies and environments, while with pip you may need another
130-
tool (there are many!) for dealing with environments or complex dependencies.
131-
132-
<a name="reproducible-installs"></a>
133-
134-
### Reproducible installs
135-
136-
As libraries get updated, results from running your code can change, or your
137-
code can break completely. It's important to be able to reconstruct the set
138-
of packages and versions you're using. Best practice is to:
139-
140-
1. use a different environment per project you're working on,
141-
2. record package names and versions using your package installer;
142-
each has its own metadata format for this:
143-
- Conda: [conda environments and environment.yml](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html)
144-
- Pip: [virtual environments](https://docs.python.org/3/tutorial/venv.html) and
145-
[requirements.txt](https://pip.readthedocs.io/en/latest/user_guide/#requirements-files)
146-
- Poetry: [virtual environments and pyproject.toml](https://python-poetry.org/docs/basic-usage/)
147-
148-
149-
150-
## NumPy packages & accelerated linear algebra libraries
151-
152-
NumPy doesn't depend on any other Python packages, however, it does depend on an
153-
accelerated linear algebra library - typically
154-
[Intel MKL](https://software.intel.com/en-us/mkl) or
155-
[OpenBLAS](https://www.openblas.net/). Users don't have to worry about
156-
installing those (they're automatically included in all NumPy install methods).
157-
Power users may still want to know the details, because the used BLAS can
158-
affect performance, behavior and size on disk:
83+
**macOS (Homebrew):**
84+
```bash
85+
brew install numpy
86+
```
87+
**Linux (APT):**
88+
```bash
89+
sudo apt install python3-numpy
90+
```
91+
**Windows (Chocolatey):**
92+
```bash
93+
choco install numpy
94+
```
15995

160-
- The NumPy wheels on PyPI, which is what pip installs, are built with OpenBLAS.
161-
The OpenBLAS libraries are included in the wheel. This makes the wheel
162-
larger, and if a user installs (for example) SciPy as well, they will now
163-
have two copies of OpenBLAS on disk.
96+
'''
16497

165-
- In the conda defaults channel, NumPy is built against Intel MKL. MKL is a
166-
separate package that will be installed in the users' environment when they
167-
install NumPy.
98+
[[tab]]
99+
name = 'Building from Source'
100+
content = '''
101+
For advanced users and developers who want to customize or debug **NumPy**.
168102

169-
- In the conda-forge channel, NumPy is built against a dummy "BLAS" package. When
170-
a user installs NumPy from conda-forge, that BLAS package then gets installed
171-
together with the actual library - this defaults to OpenBLAS, but it can also
172-
be MKL (from the defaults channel), or even
173-
[BLIS](https://github.com/flame/blis) or reference BLAS.
103+
A word of warning: building Numpy from source can be a nontrivial exercise.
104+
We recommend using binaries instead if those are available for your platform via one of the above methods.
105+
For details on how to build from source, see [the building from source guide in the Numpy docs](https://numpy.org/devdocs/building/).
174106

175-
- The MKL package is a lot larger than OpenBLAS, it's about 700 MB on disk
176-
while OpenBLAS is about 30 MB.
107+
'''
108+
{{< /tabs >}}
177109

178-
- MKL is typically a little faster and more robust than OpenBLAS.
110+
## Verifying the Installation
179111

180-
Besides install sizes, performance and robustness, there are two more things to
181-
consider:
182-
183-
- Intel MKL is not open source. For normal use this is not a problem, but if
184-
a user needs to redistribute an application built with NumPy, this could be
185-
an issue.
186-
- Both MKL and OpenBLAS will use multi-threading for function calls like
187-
`np.dot`, with the number of threads being determined by both a build-time
188-
option and an environment variable. Often all CPU cores will be used. This is
189-
sometimes unexpected for users; NumPy itself doesn't auto-parallelize any
190-
function calls. It typically yields better performance, but can also be
191-
harmful - for example when using another level of parallelization with Dask,
192-
scikit-learn or multiprocessing.
112+
After installing NumPy, verify the installation by running the following in a Python shell or script:
113+
```python
114+
import numpy as np
115+
print(np.__version__)
116+
```
193117

118+
This should print the installed version of NumPy without errors.
194119

195120
## Troubleshooting
196121

0 commit comments

Comments
 (0)