为什么它说“无法打开文件“python26.lib””?
当我尝试使用cl -LD test.c -test.dll
时,它说无法打开“python26.lib”
,为什么会发生这种情况?谢谢。 (我试图通过这个命令生成一个 dll 文件以便 python 可以调用它)
When I try to use the cl -LD test.c -test.dll
, it says can not open "python26.lib"
, why this happens?? thank you. (I was trying to generate a dll
file by this command so that python could call it)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取自此链接 - 希望这会对您有所帮助 -
这是由文件 c:\Python26\include 中的以下行引起的
\pyconfig.h
所以请:
安装程序。
或
注释 lib" 来自 pyconfig.h,因为
我无法从外部禁用它
(据我所知)。
Taken from this link - Hope this will help you -
This is caused by the following lines in the file c:\Python26\include
\pyconfig.h
So please:
installer.
or
comment lib" from pyconfig.h, since
I can't disable it from the outside
(as far as I know).