Installation
============
.. raw:: html
Plan is supported for Python 3.10 and above
Python Interface
----------------
WLPlan can be installed for Python simply by::
pip install wlplan
C++ Interface
-------------
WLPlan can be installed for your C++ project downloading the source code from `GitHub `__, followed by running in the root::
./cmake_build.py
and adding the following to the root CMakeLists.txt file of your project::
list(APPEND CMAKE_PREFIX_PATH "")
find_package(wlplan)
...
target_link_libraries( PRIVATE wlplan)