如何安装SIP makefile以使用PyQt?

时间:2016-04-06 22:54:11

标签: python c++ windows makefile

我想安装sip以与PyQt一起使用。

  1. 我已经解压缩了sip下载
  2. 我运行Windows命令提示符并将dir更改为C:\ Python \ sip \
  3. 我运行了configure.py脚本,我首先尝试了python configure.py但是因为我将sip文件夹解压缩到C:\ Python中我无法获得命令行来识别python shell < / LI>
  4. 这在命令提示符下返回了makefile,我无法使用make,它只是给了我错误'make' is not recognized
  5. 我调查了一下,以为我会用minGW
  6. 来解决这个问题
  7. 现在我的命令提示符显示:

    C:\Python\sip>configure.py --platform win32-g++ This is SIP 4.17 for Python 2.7.11 on win32. The SIP code generator will be installed in C:\Python27. The sip module will be installed in C:\Python27\Lib\site-packages. The sip.h header file will be installed in C:\Python27\include. The default directory to install .sip files in is C:\Python27\sip. Creating siplib\sip.h... Creating siplib\siplib.c... Creating siplib\siplib.sbf... Creating sipconfig.py... Creating top level Makefile... Creating sip code generator Makefile... Creating sip module Makefile...

  8. 然后我运行make并获得

    C:\Python\sip>make 'make' is not recognized as an internal or external command, operable program or batch file.

  9. 我已经通过Stack进行了搜索,有些人已经接近了答案但是还没有任何东西让我在那里。

    我正在寻找下载visual studio,因为我一直在阅读你应该从windows上运行makefile。

    这是正确的还是我找错了地方?

1 个答案:

答案 0 :(得分:0)

所以我找到了使用make的正确方法。我必须设置包含mnGW的路径并使用:mingw32-makemingw32-make install

我在蟒蛇维基上讽刺地发现了这个!

https://wiki.python.org/moin/BuildPyQt4Windows