drufat / triangle

Python bindings to the triangle library
GNU Lesser General Public License v3.0
224 stars 53 forks source link

Running python setup.py install stopped working after 52c486246f42cc90be941a504e8ff8c88b54e5ec #29

Closed SimonsUnikaNamn closed 5 years ago

SimonsUnikaNamn commented 5 years ago

Running the command python setup.py install gives

  File "setup.py", line 2, in <module>
    from Cython.Build import cythonize
ImportError: No module named Cython.Build
The command '/bin/sh -c python setup.py install' returned a non-zero code: 1

on the latest commit 52c486246f42cc90be941a504e8ff8c88b54e5ec, it works when going to 4b924a299bf80843de826c1d4be3a8529d307536

drufat commented 5 years ago

Cython is a build depdency. Installing it by, for example, running pip install cython should fix that.

SimonsUnikaNamn commented 5 years ago

Excellent, thank you