# first of all install it # from command line using pip pip install scipy # from command line using anaconda conda install -c anaconda scipy # then import it (or what you need, check documentation) in Python shell # or script: scipy is a huge collection of useful stuff! import scipy
Here is what the above code is Doing:
1. It’s installing the scipy package.
2. It’s importing the scipy package.
3. It’s printing the version of the scipy package.