【VS2017】“LNK1104 cannot open file ‘python39_d.lib‘ “

记录一下编译调用了python代码的C语言源程序时遇到的问题

版本:以python3.9.1为例
【VS2017】“LNK1104 cannot open file ‘python39_d.lib‘ “_第1张图片
先确保你安装了python的debug版本,如果没有,用对应版本安装包可以修改已经安装的python,如图。

选择 “Modify”
【VS2017】“LNK1104 cannot open file ‘python39_d.lib‘ “_第2张图片
选择next
【VS2017】“LNK1104 cannot open file ‘python39_d.lib‘ “_第3张图片
确保最后一项勾选,然后install。
【VS2017】“LNK1104 cannot open file ‘python39_d.lib‘ “_第4张图片
光安装了还不够,需要配置一下C语言编译器。

以VS2017为例:

将python37_d.lib(在安装目录下的libs文件夹里有python39_d.lib)所在文件夹的路径添加到库目录里面,右键你的解决方案,选择Properties。
【VS2017】“LNK1104 cannot open file ‘python39_d.lib‘ “_第5张图片
点击edit,把路径添加到库
【VS2017】“LNK1104 cannot open file ‘python39_d.lib‘ “_第6张图片
然后配置input,点击edit在附加依赖项中添加python39_d.lib
【VS2017】“LNK1104 cannot open file ‘python39_d.lib‘ “_第7张图片
【VS2017】“LNK1104 cannot open file ‘python39_d.lib‘ “_第8张图片
点击确定,问题解决

你可能感兴趣的:(python,pip,安全,windows,vs2015)