python-scipyHow do I check the version of Python Scipy I am using?
The easiest way to check the version of Python Scipy you are using is to use the scipy.__version__ attribute.
Example code
import scipy
print(scipy.__version__)
Example output:
1.4.1
The above code imports the scipy module and prints out the version of Python Scipy you are using.
The code can be broken down into the following parts:
import scipy: This line imports thescipymodule.print(scipy.__version__): This line prints out the version of Python Scipy you are using.
Helpful links
More of Python Scipy
- How do I create a 2D array of zeros using Python and NumPy?
- How do I create a zero matrix using Python and Numpy?
- How do I create a numpy array of zeros using Python?
- How do I create an array of zeros with the same shape as an existing array using Python and NumPy?
- How can I check if a certain version of Python is compatible with SciPy?
- How can I use Python and Numpy to zip files?
- How do I use Scipy zeros in Python?
- How can I use Python Scipy to zoom in on an image?
- How can I use Python and SciPy to generate a Voronoi diagram?
- How do I uninstall Python Scipy?
See more codes...