python-scipyHow do I check the version of Python Numpy I am using?
To check the version of Python Numpy you are using, you can use the np.__version__ command. This command will return the version of Numpy as a string.
For example,
import numpy as np
np.__version__
Output example
'1.18.1'
The code above imports the Numpy library as np, and then calls the np.__version__ command to print out the version of Numpy.
In addition, you can also check the version of Numpy from the command line. To do this, just type python -c "import numpy; print(numpy.__version__)" and it will return the version of Numpy.
Code explanation
import numpy as np: imports the Numpy library asnpnp.__version__: calls thenp.__version__command to print out the version of Numpypython -c "import numpy; print(numpy.__version__)": checks the version of Numpy from the command line
Helpful links
More of Python Scipy
- How do I use Python Numpy to read and write Excel (.xlsx) files?
- How do I create a 2D array of zeros using Python and NumPy?
- How can I use Python and SciPy to calculate quaternion operations?
- How can I use Python and SciPy to find the zeros of a function?
- How do I use the trapz function in Python SciPy?
- How do I use Scipy zeros in Python?
- How do I create a QQ plot using Python and SciPy?
- How can I use Python and Numpy to zip files?
- How can I check if a certain version of Python is compatible with SciPy?
- How can I use RK45 with Python and SciPy?
See more codes...