En me référant à l'URL ci-dessous, j'ai rendu possible l'utilisation de Cython sous Windows, alors laissez une note.
Avec la commande pip en utilisant le fichier whl compilé pour Windows installer.
http://www.lfd.uci.edu/~gohlke/pythonlibs/#cython De, selon votre version Python (= CPython) et version 32 bits ou version 64 bits Téléchargez le fichier whl correspondant.
pip install Cython-0.22.1-cp27-none-win32.whl
Ensuite, MinGW a été installé en référence à [2] afin que gcc et g ++ puissent être utilisés. Ajout de c: \ mingw \ bin à la variable d'environnement Path. Installez MinGW Check au moins gcc et g ++.
Pour configurer distutils pour utiliser MinGW [build] compiler = mingw32 Enregistrez-le sous distutils.cfg dans C: \ Python27 \ Lib \ distutil.
[1]:Unofficial Windows Binaries for Python Extension Packages http://www.lfd.uci.edu/~gohlke/pythonlibs/
\ [2]: Installation et utilisation de MinGW (version 2014) http://web.plus-idea.net/2014/06/mingw-install-2014/
\ [3]: Étonnamment facile. Mémorandum d'installation et d'utilisation de Cython http://hennohito.cocolog-nifty.com/blog/2011/07/cython-c1cb.html
Recommended Posts