5

我在 Visual Studio 2005 中遇到了一个错误。我使用boost python(boost_1_54_0) 将 python 3.3.2 连接到 c++。我按照本教程进行操作。

http://www.thalesians.com/finance/index.php/Knowledge_Base/CPP/Boost_Python_Step_By_Step

以及来自 StackOverflow 的问题

Visual Studio:链接:致命错误 LNK1181:无法打开输入文件

我在链接器输入中包含了所需的库,但我仍然收到此链接错误:

fatal error LNK1181: cannot open input file 'C:\Python33\Lib.obj'
4

1 回答 1

5

要删除此错误,请在链接器中添加附加依赖项。Project prperties-->Configuration Properties-->Linker-->Input -->Additional Dependencies 然后添加以下Libarary

c:\python33\libs\python33.lib。

希望这能解决这个错误。

于 2013-09-25T09:17:58.527 回答