You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stefan van der Walt edited this page Jun 3, 2016
·
9 revisions
Installation Instructions
If you are new to Python, please install the Anaconda distribution (available on OSX, Linux and Windows). Everyone else, feel free to use your favorite distribution, but please ensure the requirements below are met.
Test your setup
import numpy as np
import scipy as sp
import matplotlib as mpl
import skimage
for module in (np, sp, mpl, skimage):
print(module.__name__, module.__version__)