3

I'm trying to install darkflow on my mac and I've already downloaded cython extensions.

I'm trying to use this command on terminal:

python3 setup.py build_ext --inplace
Traceback (most recent call last):
  File "setup.py", line 3, in <module>
    from Cython.Build import cythonize
ImportError: No module named 'Cython'

Any ideas how to fix this error?

martineau
  • 119,623
  • 25
  • 170
  • 301
Kartman19
  • 31
  • 1
  • 2

1 Answers1

4

Try using

pip install cython

OR

You can download the latest Cython release from http://cython.org. Unpack the tarball or zip file, enter the directory, and then run:

python setup.py install

Hope it works!

Savio
  • 101
  • 5