Cython 与 pythonxy

Cython with pythonxy

我正在尝试使用 Cython,但我似乎找不到让它工作的方法。

  1. 我安装了pythonxy,它是Cython自带的。
  2. 我安装了 MS VS 2008 Express (https://go.microsoft.com/?linkid=7729279)
  3. 然后我从标准插件网页 (https://code.google.com/p/pythonxy/wiki/StandardPlugins) 安装了 pythonxy 的 Cython 插件以防万一。

但是,我得到这个错误:

ImportError: Building module MyCyModule failed: ["ValueError: [u'path']\n"]

我的 MWE 如下:


MyCyModule.pyx

print 'Hello World'

TestCyModule.py

import pyximport
pyximport.install()
import MyCyModule

为了解决这个问题,我安装了:Windows SDK for Windows Server 2008 and .NET Framework 3.5

完全归功于此博客 post:http://springflex.blogspot.com/2014/02/how-to-fix-valueerror-when-trying-to.html,尽管我不需要额外的步骤来复制 bat 文件(第 3 点及以后)

从这里下载(我使用了安装说明中的 Web 安装程序并取消选中了节省大量 space 的文档): http://www.microsoft.com/downloads/details.aspx?FamilyId=E6E1C3DF-A74F-4207-8586-711EBE331CDC&displaylang=en