1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
Installation
============
scikit-misc can be installed in a handful of ways.
1. Official release *(Recommended)*
.. code-block:: console
$ pip install scikit-misc
If you don't have `pip`_ installed, this `Python installation guide`_
can guide you through the process.
2. Development sources
.. code-block:: console
$ pip install git+https://github.com/has2k1/scikit-misc.git
Or
.. code-block:: console
$ git clone https://github.com/has2k1/scikit-misc.git
$ cd scikit-misc
$ python setup.py install
Or
.. code-block:: console
$ curl -OL https://github.com/has2k1/scikit-misc/archive/main.zip
$ unzip main
$ cd scikit-misc-main
$ python setup.py install
.. _pip: https://pip.pypa.io
.. _Python installation guide: http://docs.python-guide.org/en/latest/starting/installation/
|