Installation

You can install spherimatch simply by pip.

$ pip install spherimatch

Check if the installation is successful by importing the module:

from spherimatch import xmatch
print(xmatch.__module__)

If the output is spherimatch.xmatch, congratulations! You have successfully installed spherimatch.

Also, you can check the version installed by:

import spherimatch
print(spherimatch.__version__)

It should show 0.1, the only version available on pip at the moment.