summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cython/doc/installation.rst3
-rw-r--r--src/cython/setup.py.in7
2 files changed, 10 insertions, 0 deletions
diff --git a/src/cython/doc/installation.rst b/src/cython/doc/installation.rst
index c182f176..28d9dba2 100644
--- a/src/cython/doc/installation.rst
+++ b/src/cython/doc/installation.rst
@@ -43,6 +43,9 @@ following command in a terminal:
export PYTHONPATH='$PYTHONPATH:/path-to-gudhi/build/cython'
ctest -R py_test
+If tests fail, please try to :code:`import gudhi` and check the errors.
+The problem can come from a third-party library bad link or installation.
+
Documentation
=============
diff --git a/src/cython/setup.py.in b/src/cython/setup.py.in
index c767e93d..eda1ee04 100644
--- a/src/cython/setup.py.in
+++ b/src/cython/setup.py.in
@@ -46,4 +46,11 @@ setup(
version='@GUDHI_VERSION@',
url='http://gudhi.gforge.inria.fr/',
ext_modules = cythonize(gudhi),
+
+ #install_requires = required,
+ install_requires = [
+ "matplotlib",
+ "numpy",
+ "cython",
+ ],
)