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 asnp
np.__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 can I check if a certain version of Python is compatible with SciPy?
- How can I use Python and SciPy to find the zeros of a function?
- How do I install SciPy on Windows using Python?
- How can I use Python and SciPy to generate a Voronoi diagram?
- How do I check the version of Python SciPy I'm using?
- How do I upgrade my Python Scipy package?
- How do I convert a Python Numpy array to a Pandas Dataframe?
- How do I convert a Python numpy array to a list?
- How do I use the NumPy transpose function in Python?
See more codes...