From e8971ecf2fb1f5f7d0e97a4c6226290476917d02 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Thu, 2 Feb 2017 22:11:34 +0000 Subject: Doc update git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@2051 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 718698efa6fdb133b51923c449d97cd2365f75ae --- src/cython/doc/installation.rst | 123 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 src/cython/doc/installation.rst (limited to 'src/cython/doc/installation.rst') diff --git a/src/cython/doc/installation.rst b/src/cython/doc/installation.rst new file mode 100644 index 00000000..4359c744 --- /dev/null +++ b/src/cython/doc/installation.rst @@ -0,0 +1,123 @@ +Installation +############ + +Compiling +********* + +The library uses c++11 and requires `Boost `_ with version +1.48.0 or more recent. It is a multi-platform library and compiles on Linux, +Mac OSX and Visual Studio 2015. +It also requires cmake to generate makefiles, and cython to compile the +library. + +Demos and examples +================== + +To build the demos and examples, run the following commands in a terminal: + +.. code-block:: bash + + cd /path-to-gudhi/ + mkdir build + cd build/ + cmake .. + make cython + +A list of examples is available here. + +Test suites +=========== + +To test your build, `py.test `_ is required. Run the +following command in a terminal: + +.. code-block:: bash + + cd /path-to-gudhi/build/src/cython + # For windows, you have to set PYTHONPATH environment variable + export PYTHONPATH='$PYTHONPATH:/path-to-gudhi/build/src/cython' + py.test + +Documentation +============= + +To build the documentation, `sphinx-doc `_ is +required. Run the following commands in a terminal: + +.. code-block:: bash + + make sphynx + +Optional third-party library +**************************** + +CGAL +==== + +The :doc:`Alpha complex ` data structure and +:doc:`Tangential complex ` data structures, +:doc:`Bottleneck distance `requires CGAL, which is a +C++ library which provides easy access to efficient and reliable geometric +algorithms. + +Having CGAL version 4.7.0 or higher installed is recommended. The procedure to +install this library according to your operating system is detailed +`here `_. + +The following examples require the Computational Geometry Algorithms Library: + +* alpha_complex_diagram_persistence_from_off_file_example.py +* alpha_complex_from_points_example.py + +The following example requires CGAL version ≥ 4.8.0: + +* bottleneck_basic_example.py +* tangential_complex_plain_homology_from_off_file_example.py + +Eigen3 +====== + +The :doc:`Alpha complex ` and +:doc:`Tangential complex ` data structures and few +examples requires `Eigen3 `_, a C++ template +library for linear algebra: matrices, vectors, numerical solvers, and related +algorithms. + +The following examples require the `Eigen3 `_: + +* alpha_complex_diagram_persistence_from_off_file_example.py +* alpha_complex_from_points_example.py +* tangential_complex_plain_homology_from_off_file_example.py + +Matplotlib +========== + +The :doc:`persistence graphical tools ` +module requires `Matplotlib `_, a Python 2D plotting +library which produces publication quality figures in a variety of hardcopy +formats and interactive environments across platforms. + +The following examples require the `Matplotlib `_: + +* alpha_complex_diagram_persistence_from_off_file_example.py +* gudhi_graphical_tools_example.py +* periodic_cubical_complex_barcode_persistence_from_perseus_file_example.py +* rips_complex_diagram_persistence_with_pandas_interface_example.py +* rips_persistence_diagram.py +* tangential_complex_plain_homology_from_off_file_example.py + +Numpy +===== + +The :doc:`persistence graphical tools ` +module requires `NumPy `_, a fundamental package for +scientific computing with Python. + +The following examples require the `NumPy `_: + +* alpha_complex_diagram_persistence_from_off_file_example.py +* gudhi_graphical_tools_example.py +* periodic_cubical_complex_barcode_persistence_from_perseus_file_example.py +* rips_complex_diagram_persistence_with_pandas_interface_example.py +* rips_persistence_diagram.py +* tangential_complex_plain_homology_from_off_file_example.py -- cgit v1.2.3