About 2,050,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. Compile main Python program using Cython - Stack Overflow

    Feb 24, 2011 · I have a Python2.6 program that can load Python modules compiled to .so files using Cython. I used Cython to compile the .py modules to .so files and everything works fine. …

  3. 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 …

  4. 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.

  5. python - setup_requires with Cython? - Stack Overflow

    I'm creating a setup.py file for a project with some Cython extension modules. I've already gotten this to work: from setuptools import setup, Extension from Cython.Build import cythonize setup(...

  6. python - ImportError: No module named 'Cython' - Stack Overflow

    May 15, 2017 · I'm trying do from Cython.Build import cythonize and I get the message ImportError: No module named 'Cython', but I installed the Cython with the comand pip install …

  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 - How can I use 'prange' in Cython? - Stack Overflow

    Oct 16, 2023 · Question: "How to use prange in cython?" . . . . + (an Epilogue on True- [PARALLEL] True-randomness ...) Short version: best in those and only those places, where …

  9. ImportError: No module named Cython.Distutils - Stack Overflow

    Jun 20, 2012 · I'm having a strange problem while trying to install the Python library zenlib, using its setup.py file. When I run the setup.py file, I get an import error, saying ImportError: No …

  10. cython compilation - import vs cimport - Stack Overflow

    Mar 28, 2015 · Cython can compile normal python code, so your first one compiles. Generally speaking, the more types you mark up for cython, the more chance you will get better …