Installation

scikit-misc can be installed in a handful of ways.

  1. Official release (Recommended)

    $ pip install scikit-misc
    

    If you don’t have pip installed, this Python installation guide can guide you through the process.

  2. Development sources

    $ pip install git+https://github.com/has2k1/scikit-misc.git
    

    Or

    $ git clone https://github.com/has2k1/scikit-misc.git
    $ cd scikit-misc
    $ python setup.py install
    

    Or

    $ curl -OL https://github.com/has2k1/scikit-misc/archive/main.zip
    $ unzip main
    $ cd scikit-misc-main
    $ python setup.py install