Scipy Install
# SciPy Installation
In this chapter, we will use the pip tool to install the SciPy library. If you haven't installed this tool yet, you can refer to (#).
Upgrade pip:
python3 -m pip install -U pip
Install the scipy library:
python3 -m pip install -U scipy
After installation, we can import scipy modules using `from scipy import module`:
`constants` is the constants module of scipy.
from scipy import constants
In the following example, we import the scipy library and then check its version:
## Example
import scipy
print(scipy.__version__)
Executing the above code, the output is as follows:
1.7.0
In the following example, we import the constants module from scipy to check how many square meters are in one acre:
## Example
from scipy import constants
# How many square meters are in one acre
print(constants.acre)
Executing the above code, the output is as follows:
4046.8564223999992
YouTip