我想安装sip以与PyQt一起使用。
configure.py
脚本,我首先尝试了python configure.py
但是因为我将sip文件夹解压缩到C:\ Python中我无法获得命令行来识别python shell < / LI>
'make' is not recognized
现在我的命令提示符显示:
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...
然后我运行make并获得
C:\Python\sip>make
'make' is not recognized as an internal or external command,
operable program or batch file.
我已经通过Stack进行了搜索,有些人已经接近了答案但是还没有任何东西让我在那里。
我正在寻找下载visual studio,因为我一直在阅读你应该从windows上运行makefile。
这是正确的还是我找错了地方?
答案 0 :(得分:0)
所以我找到了使用make的正确方法。我必须设置包含mnGW的路径并使用:mingw32-make
和mingw32-make install
我在蟒蛇维基上讽刺地发现了这个!