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
|
.. _Detailed Installation:
============
Installation
============
Cyclopts requires Python >=3.9 and can be installed from PyPI via:
.. code-block:: bash
python -m pip install cyclopts
To install directly from github, you can run:
.. code-block:: bash
python -m pip install git+https://github.com/BrianPugh/cyclopts.git
For Cyclopts development, its recommended to use Poetry:
.. code-block:: bash
git clone https://github.com/BrianPugh/cyclopts.git
cd cyclopts
poetry install
|