Questions tagged [python-sip]

SIP is a python library used to port native C/C++ APIs into Python. SIP was originally written to manage the complex interfaces required by PyQT; however, it has general usage for anyone wishing to port C/C++ code into Python.

SIP is a python library used to port native C/C++ APIs into Python. SIP was originally written to manage the complex interfaces required by PyQT; however, it has general usage for anyone wishing to port C/C++ code into Python.

138 questions
0
votes
0 answers

Install PyQt and SIP for Python3.6 on Windows7

I found TONS of answers online but nothing helped. I found this question: How to install SIP & PyQT on windows 7 Which kind of helped but I got stuck on this part: (Step I Got Stuck On) After pasting "C:\Qt\Qt5.8.0\5.8\msvc2015\bin\qtenv2.bat"into…
user9123
  • 581
  • 1
  • 10
  • 21
0
votes
2 answers

How do i install PyQt5 with python 3.7.0a2 on windows 10

I am new to all of this and I am trying to install PyQt5, I entered "pip install pyqt5" and this is what happened - ( its cached because of previous download attempt) C:\Users\Liam>pip install pyqt5 Collecting pyqt5 Using cached…
Liam
  • 125
  • 1
  • 7
0
votes
0 answers

content missing when a file is written into another file Python

Im an entry level Python developer working on a requirement where I need to merge so many text files in forder A into one file in Folder B. I wrote the below code which is working but its not writing the entire content from files in folder A. …
0
votes
0 answers

Can't install PyQt4

I'm trying to install the latest version of PyQt4 for windows. Riverbank doesn't provide binary installer anymore. I downloaded the source package and when I try to follow the instructions by running python configure.py I get an error message that I…
E. Aly
  • 321
  • 4
  • 16
0
votes
1 answer

Issues with PyQt4 + SIP on Windows 10: Could not find a version that satisfies the requirement SIP (from versions: )

I have been trying to install SIP and PyQt4 + SIP for a while now under windows 10 in a Virtual env (legacy project so was done in PyQt4). I started in PyCharm using the package manager. I also tried command line. C:\Users\jspada>pip install…
jspada
  • 481
  • 1
  • 6
  • 24
0
votes
0 answers

Makefile not Windows compatible?

I'm attempting to install the Pyforms library, so I attempted to install PyQt4 as a dependency. PyQt4 has SIP as a dependency, so I went and attempted to build that file from scratch as well (when installed via Pip, I was informed that sipconfig.py…
Endme
  • 1
0
votes
1 answer

What is the difference between tel: and sip: uri in SIP?

I dint get a clear picture of these two schemes. Can somebody help me to understand. what i understood is sip uri can contain user agent ip, its name or other identity which can be resolved by sip proxy whereas tel uri contains resolved number and…
Shahid Hussain
  • 1,599
  • 1
  • 20
  • 24
0
votes
1 answer

Struggling to build SIP for PyQt4

Basically, trying to build SIP so that I can install PyQt4. I manage to use python configure.py That is completely fine - I get the sipconfig.py file. Problem comes when I try to build. It won't recognise make. I've tried to get Visual Studio…
0
votes
1 answer

Can I specify a path to Python.h for sip-4.18.1 when running 'make' command?

I am trying to configure sip-4.18.1 on RHEL 7. I have downloaded/installed/configured Python3.5.2. When I run 'make' inside sip directory I get this error: gcc -c -pipe -fPIC -O2 -Wall -W -DNDEBUG -I. -I/usr/include/python2.7 -o siplib.o siplib.c …
K. Canaday
  • 11
  • 1
0
votes
1 answer

error on sip install (make) for Python PyQT

I would like to develop a Python application with GUI. For that I find a PyQT. For use PyQT I must install a SIP library. My reference is : SIP documentation For resume I must do that : python configure.py make make install Before I installed the…
miltone
  • 4,416
  • 11
  • 42
  • 76
0
votes
0 answers

RuntimeError: the sip module implements API v11.0 but the PyQt4.QtCore module requires API v11.1

I'm trying to install gnuradio from this repo, using homebrew. I'm on OSX 10.10.2. The install keeps failing and saying that my sip and pyqt modules ahave mismatched API versions. I've done some searching and most things seem to indicate that I…
David
  • 21
  • 5
0
votes
0 answers

SIP install fails (make install): "cannot find file"

Trying to get PyQt 5.3.2 installed, I have so far installed Qt and SIP. (Running Windows 7, Python 3.4, SIP 4.16.4, Qt 5, Gnu make 3.8.1). Below is the text from the DOS window: C:\sip-4.16.4>python configure.py --platform win32-g++ This is SIP…
nandomtl
  • 25
  • 7
0
votes
1 answer

unable to open sip-4.16.4/siplib/siplib.sbf

I am preparing to install PyQt on a Mac running OS X 10.9.5. Python 3.4.2. According to this page: http://pyqt.sourceforge.net/Docs/PyQt5/installation.html I should download and install SIP first. So I downloaded V4.16.4 from Riverbank:…
nandomtl
  • 25
  • 7
0
votes
1 answer

Installing SIP 4.16.4 and PyQt5.3.1 for Python 3.4 x64 on Windows 8.1

Downloaded SIP 4.16.4.zip(windows source) from riverbankcomputing - Unpacked and ran configure.py from within the folder. Sub-Directories sipgen, sip-lib are now in the Python34 directory along with sipconfig.py and Makefile. I am unable to run…
Jim
  • 41
  • 4
0
votes
1 answer

Import error:Pyqt

While installing pyqt in windows 7 gives error: D:\pyqt>python configure.py install Traceback (most recent call last): File "configure.py", line 32, in import sipconfig ImportError: No module named sipconfig How to rectify this ?
Ree
  • 129
  • 3
  • 5
  • 9