我正在尝试编译一个C文件以在Python中使用。该文件是微分代数方程(DAE)的求解器。我的问题是,当我编译setup.py文件时,我收到erro无法打开源文件:'daesolver.c':没有这样的文件或目录。由于C文件非常复杂,我尝试用更简单的例子做同样的事情。我使用了Elliot Forbes(https://tutorialedge.net/python/python-c-extensions-tutorial/)提供的HelloWorld示例。即使使用这个非常简单的功能,我也会收到同样的错误。这是我从构建命令收到的完整输出。
C:\Users\Administrator>python c:\temp\teste_C2py\setup.py build
running build
running build_ext
building 'myModule' extension
C:\Program Files (x86)\Microsoft Visual
Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\cl.exe /c
/nolog
o /Ox /W3 /GL /DNDEBUG /MD -IC:\ProgramData\Anaconda3\include -
IC:\ProgramData\Anaconda3\include "-IC:\Program Files (x8
6)\Microsoft Visual
Studio\2017\Community\VC\Tools\MSVC\14.16.27023\ATLMFC\include" "-
IC:\Program Files (x86)\Microsoft
Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\include" "-
IC:\Program Files (x86)\Windows Kits\10\include\10.0.1
7763.0\ucrt" "-IC:\Program Files (x86)\Windows
Kits\10\include\10.0.17763.0\shared" "-IC:\Program Files (x86)\Windows Ki
ts\10\include\10.0.17763.0\um" "-IC:\Program Files (x86)\Windows
Kits\10\include\10.0.17763.0\winrt" "-IC:\Program Files
(x86)\Windows Kits\10\include\10.0.17763.0\cppwinrt" /Tctest.c
/Fobuild\temp.win-amd64-3.7\Release\test.obj
test.c
c1: fatal error C1083: Cannot open source file: 'test.c': No such file or
directory
error: command 'C:\\Program Files (x86)\\Microsoft Visual
Studio\\2017\\Community\\VC\\Tools\\MSVC\\14.16.27023\\bin\\Ho
stX86\\x64\\cl.exe' failed with exit status 2
这是test.c文件
#include <Python.h>
// Function 1: A simple 'hello world' function
static PyObject* helloworld(PyObject* self, PyObject* args)
{
printf("Hello World\n");
return Py_None;
}
// Our Module's Function Definition struct
// We require this `NULL` to signal the end of our method
// definition
static PyMethodDef myMethods[] = {
{ "helloworld", helloworld, METH_NOARGS, "Prints Hello World" },
{ NULL, NULL, 0, NULL }
};
// Our Module Definition struct
static struct PyModuleDef myModule = {
PyModuleDef_HEAD_INIT,
"myModule",
"Test Module",
-1,
myMethods
};
// Initializes our module using our above struct
PyMODINIT_FUNC PyInit_myModule(void)
{
return PyModule_Create(&myModule);
}
这是setup.py
from distutils.core import setup, Extension
setup(name = 'myModule', version = '1.0', \
ext_modules = [Extension('myModule', ['test.c'])])
这两个文件都位于同一个文件夹c:\ temp \ teste_C2py中。
我在Anaconda分发64位中使用Python 3.7(我也想对x86做同样的事情)。
我已经在相同的环境中安装了Visual Studio 2017(社区)以及所有必需的编译器(至少我认为是这样)。
真正奇怪的是,当我在虚拟机中安装vs构建工具2017时,我就是这样做的,但是当我尝试在另一台机器上复制它时,它给了我这个错误。我也弄乱了我第一次做这项工作的环境,现在我再也无法做到这一点。
我还设置了环境变量VS150COMNTOOLS = C:\ Program Files(x86)\ Microsoft Visual Studio \ 2017 \ Community \ Common7 \ Tools
似乎我在Visual Studio配置中遗漏了一些东西,因为找不到同一文件夹的文件没有意义。
我发现了这个问题。过去,这是一件非常愚蠢的事情。我试图从python.exe所在的文件夹运行安装脚本(因为我的机器中有不同版本的Python)。但是,如果不是这样,我移动到setup.py文件所在的文件夹并运行coomand,而没有任何路径beget setup.py构建工作!我不知道为什么相对路径在这里不起作用。我希望这可以帮助你!