https://github.com/yaml2sbml-dev/yaml2sbml
Revision d1b33dade5c5f562a3686bb7bd967f5d8f94f8d2 authored by Marta Matos on 14 February 2021, 13:53:11 UTC, committed by GitHub on 14 February 2021, 13:53:11 UTC
1 parent 52d574b
Raw File
Tip revision: d1b33dade5c5f562a3686bb7bd967f5d8f94f8d2 authored by Marta Matos on 14 February 2021, 13:53:11 UTC
Fix link to format documentation on README (#103)
Tip revision: d1b33da
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