About 6,570,000 results
Open links in new tab
  1. python - Making an executable in Cython - Stack Overflow

    Been playing with cython. Normally program in Python, but used C in a previous life. I can't figure out how to make a free-standing executable. I've downloaded cython, and I can make a .pyx …

  2. Wrapping a C library in Python: C, Cython or ctypes?

    Dec 22, 2009 · With Cython, OTOH, you're completely free to make the wrapping and calling code as thin or thick as you want. You can start with simple calls into your C code from regular …

  3. python - I got ModuleNotFoundError: No module named 'Cython' …

    Jan 17, 2021 · pip install cython Futher, if you are using spyder from anaconda, make sure you launch spyder from the environment in which cython is installed.

  4. Compile main Python program using Cython - Stack Overflow

    Feb 24, 2011 · Here is an extremely simple example. I am peforming this from a Debian Sid workstation, using python3 and cython3.. Make sure you have python-dev or python3-dev …

  5. How to use Cython on Windows 10 with python 3.8 - Stack Overflow

    How to use Cython on Windows 10 with python 3.8 Asked 5 years, 10 months ago Modified 4 years, 9 months ago Viewed 12k times

  6. ModuleNotFoundError when installing Cython module through …

    Nov 8, 2023 · I'm trying to build a python module in the folder mymodule containing some cython code. However, on Windows, installing it via pip, it cannot find Cython even though it is installed.

  7. Python vs. CPython - Stack Overflow

    Jun 16, 2013 · Cython is a compiled language as it generates C code and gets compiled by C compiler. We can write similar code in Cython as in default Python or CPython, the differences …

  8. python - Cython: "fatal error: numpy/arrayobject.h: No such file or ...

    Apr 14, 2015 · I'm trying to speed up the answer here using Cython. I try to compile the code (after doing the cygwinccompiler.py hack explained here), but get a fatal error: …

  9. Newest 'cython' Questions - Stack Overflow

    Oct 20, 2025 · I am using Cython to generate multiple C files from multiple Python files and then compile them using GCC. Using Python3.10 on Ubuntu 22.04 my tool flow works fine.

  10. python - Do I need to use `nogil` in Cython - Stack Overflow

    Jan 21, 2021 · One dumb question, Cython code using Numpy functions don't seem to be faster than plain Py Numpy version. My use-case is implementing some ML algorithm in Cython with …