编程语言
首页 > 编程语言> > python-无法在OS X Lion中构建Cython / distutils.

python-无法在OS X Lion中构建Cython / distutils.

作者:互联网

我在互联网上到处都在寻找解决方案,但没有发现任何帮助.

我正在尝试使用Cython将C代码嵌入到我的python程序中.

python setup.py build_ext --inplace

当我运行上面的代码时,它抱怨编译器,而不是gcc-4.0.我现在知道Lion上仅安装了gcc-4.2(python 2.7 32位).反正有没有得到4.0,我试过芬克,但它没有. (我已经在Windows和我的带有雪豹的朋友笔记本电脑上运行了此程序,并且运行良好).

如果我尝试指定已安装的gcc,我会得到

error: don't know how to compile C/C++ code on platform 'posix' with 'gcc' compiler

要检查我运行的可能的编译器:

python setup.py build_ext --inplace --help-compiler

并得到这些:

List of available compilers:
  --compiler=bcpp     Borland C++ Compiler
  --compiler=cygwin   Cygwin port of GNU C Compiler for Win32
  --compiler=emx      EMX port of GNU C Compiler for OS/2
  --compiler=mingw32  Mingw32 port of GNU C Compiler for Win32
  --compiler=msvc     Microsoft Visual C++
  --compiler=unix     standard UNIX-style compiler

据我所知,我也无法安装其中任何一个.

有什么我可以解决的问题吗?

解决方法:

我在virtualenv中编译greenlet时遇到了同样的问题,可以通过在文件lib / python2.7 / config / Makefile中手动设置所需的编译器来解决.

标签:gcc,cython,osx-lion,distutils,python
来源: https://codeday.me/bug/20191202/2085019.html