Why does Cython not want to work ? I've pip installed it and when I try to import it, it just won't work.
I'm using MacOS Version 10.12.6 (16G29)
Here's even a screenshot:

Cython works by producing a standard Python module. However, the behavior differs from standard Python in that the module code, originally written in Python, is translated into C. While the resulting code is fast, it makes many calls into the CPython interpreter and CPython standard libraries to perform actual work.
This is possible if you have multiple versions of Python installed try:
python3.7 -m pip install cython
use which pip3 to check where it was installing the package previously
Update: OP used python3.7, if you have a different alias or a different version, you should use that instead. This is obviously installation dependent.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With