Importer Scipy Python

# 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
wolf-like_hunter