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 42 43 44 45 46 47 48 49
|
====================================
Downloading and Installation
====================================
.. _github: https://github.com/newville/wxmplot
.. _PyPI: https://pypi.python.org/pypi/wxmplot
Prerequisites
~~~~~~~~~~~~~~~
The current version of wxmplot is |release|, released in October, 2023.
The wxmplot package requires Python 3.7 or higher, wxPython 4.1.0 or higher,
matplotlib 3.5.0 or higher, numpy 1.18 or higher, and Pillow 7.0 or higher.
All of these are readily available from `pip` or on `conda` channels.
Installation
~~~~~~~~~~~~~~
The latest version (|release|) is available from `PyPI`_ or `github`_, and
the package can be installed with::
pip install wxmplot
Development Version
~~~~~~~~~~~~~~~~~~~~~~~~
To get the latest development version, use::
git clone https://github.com/newville/wxmplot.git
Installation from Source
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
wxmplot is a pure python module, so installation on all platforms can use
the source kit and a standard installation using::
pip install .
License
~~~~~~~~~~~~~
The wxmplot code is distribution under the following license:
.. literalinclude:: ../LICENSE
|