You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Installation.rst 854 B

123456789101112131415161718192021222324252627282930313233343536
  1. Installation
  2. ==================
  3. Install from PyPI
  4. ^^^^^^^^^^^^^^^^^
  5. The easiest way to install ABLkit is using ``pip``:
  6. .. code:: bash
  7. pip install ablkit
  8. Install from Source
  9. ^^^^^^^^^^^^^^^^^^^
  10. Alternatively, to install from source code,
  11. sequentially run following commands in your terminal/command line.
  12. .. code:: bash
  13. git clone https://github.com/AbductiveLearning/ABLkit.git
  14. cd ABLkit
  15. pip install -v -e .
  16. (Optional) Install SWI-Prolog
  17. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  18. If the use of a :ref:`Prolog-based knowledge base <prolog>` is necessary, the installation of `SWI-Prolog <https://www.swi-prolog.org/>`_ is also required:
  19. For Linux users:
  20. .. code:: bash
  21. sudo apt-get install swi-prolog
  22. For Windows and Mac users, please refer to the `SWI-Prolog Install Guide <https://github.com/yuce/pyswip/blob/master/INSTALL.md>`_.

An efficient Python toolkit for Abductive Learning (ABL), a novel paradigm that integrates machine learning and logical reasoning in a unified framework.