https://github.com/yaml2sbml-dev/yaml2sbml
Raw File
Tip revision: 48ff99b44f666159a688a16ca80673ee7854bace authored by Jakob Vanhoefer on 07 March 2021, 16:53:47 UTC
fix notebooks
Tip revision: 48ff99b
INSTALL.rst
Installation
============

This package requires Python 3.6 or later. Miniconda_ provides a small
installation.

Install from PyPI
-----------------

Install yaml2sbml from PyPI_ via::

    pip install yaml2sbml

Install from GitHub
-------------------

To work with the latest development version, install yaml2sbml from
GitHub_ via::

    pip install https://github.com/yaml2sbml-dev/yaml2sbml/archive/develop.zip

or clone the repository and install from local via::

    git clone https://github.com/yaml2sbml-dev/yaml2sbml
    cd yaml2sbml
    git checkout develop
    pip install -e .

where ``-e`` is short for ``--editable`` and links the installed package to
the current location, such that changes there take immediate effect.

.. _Miniconda: http://conda.pydata.org/miniconda.html
.. _PyPI: https://pypi.org/project/yaml2sbml
.. _GitHub: https://github.com/yaml2sbml-dev/yaml2sbml
back to top