1、环境配置:
1)安装VS2013(注意语言包一定要正确安装)
如果提示--MS VS 检测到已安装的语言资源版本不匹配。则如下处理:
建立vs_langpack.exe的快捷方式,然后修改路径,后面加上“空格 /Uninstall”
例如:(“E:\Downloads\vs_langpack.exe /Uninstall”)
然后修复安装即可
2)安装PTVS 2.2 VS 2013.msi工具,默认安装就可以了
3)在Python的安装文件中配置
配置系统环境Path:E:\Python\Python27
然后在Python的安装目录中的的include文件夹中(E:\Python\Python27\include)配置
【1】修改Python.h文件
在Python.h文件的
#include "patchlevel.h"
#include "pyconfig.h"
#include "pymacconfig.h"上面添加下面两个其一,推荐第一个(亲自试过)
#define Py_NO_ENABLE_SHARED
#define MS_NO_COREDLL
【2】修改 pyconfig.h
修改
#ifdef _DEBUG
# define Py_DEBUG
#endif
为
#ifdef _DEBUG
//# define Py_DEBUG
#endif
修改
# ifdef _DEBUG
# pragma comment(lib,"python24_d.lib")
# else
# pragma comment(lib,"python24.lib")
# endif
为
# ifdef _DEBUG
# pragma comment(lib,"python24