On Mon, Mar 4, 2013 at 7:24 PM, Preeti <preetigupta25@gmail.com> wrote:
Hello,

Can someone tell me how to use this package? I got the source but where do I
put it on my mac?

Don't you have scipy installed? Then no need to download a separate source and put it somewhere. Just do:

>>> from scipy.io import netcdf
>>>  f = netcdf.netcdf_file('myfilename.nc')
>>> f.<TAB>  # look at methods to explore contents in file

Ralf