diff --git a/PythonAPI/setup.py b/PythonAPI/setup.py index eb3d508c..526081f3 100644 --- a/PythonAPI/setup.py +++ b/PythonAPI/setup.py @@ -5,6 +5,7 @@ # To compile and install locally run "python setup.py build_ext --inplace" # To install library to Python site-packages run "python setup.py build_ext install" +# For python 3 run above commands with python3 instead ext_modules = [ Extension( @@ -21,4 +22,4 @@ version='2.0', ext_modules= cythonize(ext_modules) - ) \ No newline at end of file + )