Чтобы установить PyQt, нужно поставить SIP. Не удается установить SIP. После выполнения команды c:\python26\python configure.py -p win32-g++ появляется Makefile:
all:
	cd sipgen
	$(MAKE)
	@cd ..
	cd siplib
	$(MAKE)
	@cd ..

install:
	cd sipgen
	$(MAKE) install
	@cd ..
	cd siplib
	$(MAKE) install
	@cd ..
	@if not exist "C:\Program Files\Python25\Lib\site-packages" mkdir "C:\Program Files\Python25\Lib\site-packages"
	copy /y sipconfig.py "C:\Program Files\Python25\Lib\site-packages\sipconfig.py"
	copy /y sipdistutils.py "C:\Program Files\Python25\Lib\site-packages\sipdistutils.py"

clean:
	cd sipgen
	$(MAKE) clean
	@cd ..
	cd siplib
	$(MAKE) clean
	@cd ..
Утилита make из Dev-Cpp возвращает ошибку Error 2. Что делать?
mingw32-make[1]: Entering directory `C:/sip4/sipgen'
gcc -c -O2 -w -DUNICODE -DQT_LARGEFILE_SUPPORT -I. -o main.o main.c
gcc installation problem , cannot exec `cc1`: No such file or directory
mingw32-make[1]: Leaving directory `C:/sip4/sipgen'
Makefile директории sipgen:
TARGET = sip.exe
OFILES = main.o transform.o gencode.o export.o heap.o parser.o lexer.o
HFILES = sip.h parser.h

CC = gcc
CXX = g++
LINK = g++
CPPFLAGS = -DUNICODE -DQT_LARGEFILE_SUPPORT -I.
CFLAGS = -O2 -w
CXXFLAGS = -O2 -w
LFLAGS = -mthreads -Wl,-enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -Wl,-subsystem,console -Wl,-s
LIBS = 
.SUFFIXES: .cpp .cxx .cc .C .c


.cpp.o:
	$(CXX) -c $(CXXFLAGS) $(CPPFLAGS) -o $@ $<

.cc.o:
	$(CXX) -c $(CXXFLAGS) $(CPPFLAGS) -o $@ $<

.cxx.o:
	$(CXX) -c $(CXXFLAGS) $(CPPFLAGS) -o $@ $<

.C.o:
	$(CXX) -c $(CXXFLAGS) $(CPPFLAGS) -o $@ $<

.c.o:
	$(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@ $<

$(TARGET): $(OFILES)
	$(LINK) $(LFLAGS) -o $(TARGET) $(OFILES) $(LIBS)

$(OFILES): $(HFILES)

install: $(TARGET)
	@if not exist "C:\Program files\Python25" mkdir "C:\Program files\Python25"
	copy /y $(TARGET) "C:\Program files\Python25\$(TARGET)"

clean:
	-del $(TARGET)
	-del main.o
	-del transform.o
	-del gencode.o
	-del export.o
	-del heap.o
	-del parser.o
	-del lexer.o
Пробовал добавлять путь к cc1.exe в переменную PATH - не помогает.