Commit c68fa0a3 authored by mdouze's avatar mdouze Committed by GitHub

Python 3 instructions

parent d03fd8aa
......@@ -91,11 +91,17 @@ BLASLDFLAGS=/usr/lib64/libopenblas.so.0
# SWIG executable. This should be at least version 3.x
SWIGEXEC=swig
# The Python include directories for the current python executable can
# The Python include directories for a given python executable can
# typically be found with
#
# python -c "import distutils.sysconfig; print distutils.sysconfig.get_python_inc()"
# python -c "import numpy ; print numpy.get_include()"
#
# or, for Python 3, with
#
# python3 -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_inc())"
# python3 -c "import numpy ; print(numpy.get_include())"
#
PYTHONCFLAGS=-I/usr/include/python2.7/ -I/usr/lib64/python2.7/site-packages/numpy/core/include/numpy/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment