Installation

Via pip

This module can be found on pipy: https://pypi.org/project/ndsharray/

For installation, first activate your environment, and then install ndsharray:

pip install ndsharray

To uninstall the python package, type in this command:

pip uninstall ndsharray

From sources

The sources for ndsharray can be found in the github github repository.

Clone the repository:

git clone git://gitlab.com/monzelr/ndsharray

Best practice is just to link the source to to your python environment via the develop command:

cd ndsharray
python setup.py develop

Of course, you can also install the package with python normally:

$ python setup.py install

To uninstall the python package, type in this command:

pip uninstall ndsharray

Distribution

If you want to distribute the package, please build a python wheel which can be distributed:

python setup.py bdist_wheel

The wheel can be installed with the pip command.