Как импортировать Scypy в Python

#'pip install scipy' in terminal first

import scipy
#or
import scipy as sp
#or
import scipy as sc
Vihaking