I am installing cython to my python.
I unzipped the tar.gz and did the build-install routine.
Then, setup.py told me:
Traceback (most recent call last):
File "setup.py", line 238, in <module>
compile_cython_modules(cython_profile, cython_compile_more, cython_with_refnanny)
File "setup.py", line 170, in compile_cython_modules
from Cython.Distutils import build_ext
ImportError: No module named Cython.Distutils
So it means, I need cython to install cython?
Or did I miss something important?