Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #42582 > unrolled thread
| Started by | "D. Xenakis" <gouzounakis@hotmail.com> |
|---|---|
| First post | 2013-04-02 08:39 -0700 |
| Last post | 2013-04-02 13:42 -0700 |
| Articles | 7 — 3 participants |
Back to article view | Back to comp.lang.python
Help installing latest PyQT "D. Xenakis" <gouzounakis@hotmail.com> - 2013-04-02 08:39 -0700
Re: Help installing latest PyQT David Robinow <drobinow@gmail.com> - 2013-04-02 12:10 -0400
Re: Help installing latest PyQT Sibylle Koczian <nulla.epistola@web.de> - 2013-04-02 21:44 +0200
Re: Help installing latest PyQT "D. Xenakis" <gouzounakis@hotmail.com> - 2013-04-02 13:47 -0700
Re: Help installing latest PyQT "D. Xenakis" <gouzounakis@hotmail.com> - 2013-04-02 13:47 -0700
Re: Help installing latest PyQT "D. Xenakis" <gouzounakis@hotmail.com> - 2013-04-02 13:35 -0700
Re: Help installing latest PyQT "D. Xenakis" <gouzounakis@hotmail.com> - 2013-04-02 13:42 -0700
| From | "D. Xenakis" <gouzounakis@hotmail.com> |
|---|---|
| Date | 2013-04-02 08:39 -0700 |
| Subject | Help installing latest PyQT |
| Message-ID | <9056d15b-1610-4e16-a2d7-f987c97fb7e9@googlegroups.com> |
Hi there im trying to install PyQT (version PyQt4-4.10-gpl-Py3.3-Qt5.0.1-x64-2.exe) but i dont know how to make sure i have installed everything correctly. I tried to find documentation about this but most links were very dead.. So far so good.. i have: 1)Downloaded and installed "Python 3.3.0 Windows X86-64 MSI Installer" from http://www.python.org/download/ , here: "C:\Python33" (i have 64 bit Win7 pro Greek edition) 2)Downloaded and unzipped "sip-4.14.5.zip" from http://www.riverbankcomputing.com/software/sip/download , here: "D:\Downloads\sip-4.14.5" (other than that, haven't played with this folder any further, cause i dont know what exactly i should do with that so everything is get properly done..) I suppose after having it unzipped, i should then move that somewhere (maybe here "C:\Python33") and then maybe run some commands but.. help needed here so i dont do something wrong, as this link http://goo.gl/UuLjz doesnt make that clear to me what exact steps i should follow :( . 3)Downloaded and installed "PyQt4-4.10-gpl-Py3.3-Qt5.0.1-x64-2.exe" from http://www.riverbankcomputing.com/software/pyqt/download , here: "C:\Python33" (It was the setup's default choice so i assumed it was also the right one). And thats it.. What should i do exactly now foks :) Thx in advance
[toc] | [next] | [standalone]
| From | David Robinow <drobinow@gmail.com> |
|---|---|
| Date | 2013-04-02 12:10 -0400 |
| Message-ID | <mailman.13.1364919052.3114.python-list@python.org> |
| In reply to | #42582 |
[Multipart message — attachments visible in raw view] — view raw
On Tue, Apr 2, 2013 at 11:39 AM, D. Xenakis <gouzounakis@hotmail.com> wrote: > Hi there im trying to install PyQT (version > PyQt4-4.10-gpl-Py3.3-Qt5.0.1-x64-2.exe) but i dont know how to make sure i > have installed everything correctly. I tried to find documentation about > this but most links were very dead.. > > So far so good.. i have: > 1)Downloaded and installed "Python 3.3.0 Windows X86-64 MSI Installer" > from http://www.python.org/download/ , here: "C:\Python33" (i have 64 bit > Win7 pro Greek edition) > > 2)Downloaded and unzipped "sip-4.14.5.zip" from > http://www.riverbankcomputing.com/software/sip/download , here: > "D:\Downloads\sip-4.14.5" (other than that, haven't played with this folder > any further, cause i dont know what exactly i should do with that so > everything is get properly done..) I suppose after having it unzipped, i > should then move that somewhere (maybe here "C:\Python33") and then maybe > run some commands but.. help needed here so i dont do something wrong, as > this link http://goo.gl/UuLjz doesnt make that clear to me what exact > steps i should follow :( . > sip is not required unless you're building PyQt from sources. You don't need to do anything with this. > > 3)Downloaded and installed "PyQt4-4.10-gpl-Py3.3-Qt5.0.1-x64-2.exe" from > http://www.riverbankcomputing.com/software/pyqt/download , here: > "C:\Python33" (It was the setup's default choice so i assumed it was also > the right one). > Yes. > > And thats it.. > > What should i do exactly now foks :) > You should be done.Start an interactive python and enter: >>>import PyQt4 If there's no traceback you're good to go.
[toc] | [prev] | [next] | [standalone]
| From | Sibylle Koczian <nulla.epistola@web.de> |
|---|---|
| Date | 2013-04-02 21:44 +0200 |
| Message-ID | <mailman.20.1364931898.3114.python-list@python.org> |
| In reply to | #42582 |
Am 02.04.2013 18:10, schrieb David Robinow: > On Tue, Apr 2, 2013 at 11:39 AM, D. Xenakis <gouzounakis@hotmail.com > <mailto:gouzounakis@hotmail.com>> wrote: > > 3)Downloaded and installed "PyQt4-4.10-gpl-Py3.3-Qt5.0.1-x64-2.exe" > from http://www.riverbankcomputing.com/software/pyqt/download , > here: "C:\Python33" (It was the setup's default choice so i assumed > it was also the right one). > > Yes. > > > And thats it.. > > What should i do exactly now foks :) > > You should be done.Start an interactive python and enter: > >>>import PyQt4 > > If there's no traceback you're good to go. > I'd try one thing more from that interactive python prompt: from PyQt4 import QtCore from PyQt4 import QtGui Do you get tracebacks with this? (I do, that's why I ask.) The examples that come with the installation usually do both imports in one line, but for a first test this may be better: if you get an error, you see a little more. HTH Sibylle
[toc] | [prev] | [next] | [standalone]
| From | "D. Xenakis" <gouzounakis@hotmail.com> |
|---|---|
| Date | 2013-04-02 13:47 -0700 |
| Message-ID | <a69c68bb-732d-4abe-b9d9-1732ed6a7899@googlegroups.com> |
| In reply to | #42599 |
Τη Τρίτη, 2 Απριλίου 2013 10:44:43 μ.μ. UTC+3, ο χρήστης Sibylle Koczian έγραψε: > Am 02.04.2013 18:10, schrieb David Robinow: > > > > > > 3)Downloaded and installed "PyQt4-4.10-gpl-Py3.3-Qt5.0.1-x64-2.exe" > > > from http://www.riverbankcomputing.com/software/pyqt/download , > > > here: "C:\Python33" (It was the setup's default choice so i assumed > > > it was also the right one). > > > > > > Yes. > > > > > > > > > And thats it.. > > > > > > What should i do exactly now foks :) > > > > > > You should be done.Start an interactive python and enter: > > > >>>import PyQt4 > > > > > > If there's no traceback you're good to go. > > > > > > > I'd try one thing more from that interactive python prompt: > > > > from PyQt4 import QtCore > > from PyQt4 import QtGui > > > > Do you get tracebacks with this? (I do, that's why I ask.) > > > > The examples that come with the installation usually do both imports in > > one line, but for a first test this may be better: if you get an error, > > you see a little more. > > > > HTH > > Sibylle from PyQt4 import QtCore from PyQt4 import QtGui I get no error using those on IDLE 3.3
[toc] | [prev] | [next] | [standalone]
| From | "D. Xenakis" <gouzounakis@hotmail.com> |
|---|---|
| Date | 2013-04-02 13:47 -0700 |
| Message-ID | <mailman.22.1364938355.3114.python-list@python.org> |
| In reply to | #42599 |
Τη Τρίτη, 2 Απριλίου 2013 10:44:43 μ.μ. UTC+3, ο χρήστης Sibylle Koczian έγραψε: > Am 02.04.2013 18:10, schrieb David Robinow: > > > > > > 3)Downloaded and installed "PyQt4-4.10-gpl-Py3.3-Qt5.0.1-x64-2.exe" > > > from http://www.riverbankcomputing.com/software/pyqt/download , > > > here: "C:\Python33" (It was the setup's default choice so i assumed > > > it was also the right one). > > > > > > Yes. > > > > > > > > > And thats it.. > > > > > > What should i do exactly now foks :) > > > > > > You should be done.Start an interactive python and enter: > > > >>>import PyQt4 > > > > > > If there's no traceback you're good to go. > > > > > > > I'd try one thing more from that interactive python prompt: > > > > from PyQt4 import QtCore > > from PyQt4 import QtGui > > > > Do you get tracebacks with this? (I do, that's why I ask.) > > > > The examples that come with the installation usually do both imports in > > one line, but for a first test this may be better: if you get an error, > > you see a little more. > > > > HTH > > Sibylle from PyQt4 import QtCore from PyQt4 import QtGui I get no error using those on IDLE 3.3
[toc] | [prev] | [next] | [standalone]
| From | "D. Xenakis" <gouzounakis@hotmail.com> |
|---|---|
| Date | 2013-04-02 13:35 -0700 |
| Message-ID | <7d14b104-c5f6-424c-a75c-a4a4b7a89788@googlegroups.com> |
| In reply to | #42582 |
Τη Τρίτη, 2 Απριλίου 2013 6:39:07 μ.μ. UTC+3, ο χρήστης D. Xenakis έγραψε: > Hi there im trying to install PyQT (version PyQt4-4.10-gpl-Py3.3-Qt5.0.1-x64-2.exe) but i dont know how to make sure i have installed everything correctly. I tried to find documentation about this but most links were very dead.. > > > > So far so good.. i have: > > 1)Downloaded and installed "Python 3.3.0 Windows X86-64 MSI Installer" from http://www.python.org/download/ , here: "C:\Python33" (i have 64 bit Win7 pro Greek edition) > > > > 2)Downloaded and unzipped "sip-4.14.5.zip" from http://www.riverbankcomputing.com/software/sip/download , here: "D:\Downloads\sip-4.14.5" (other than that, haven't played with this folder any further, cause i dont know what exactly i should do with that so everything is get properly done..) I suppose after having it unzipped, i should then move that somewhere (maybe here "C:\Python33") and then maybe run some commands but.. help needed here so i dont do something wrong, as this link http://goo.gl/UuLjz doesnt make that clear to me what exact steps i should follow :( . > > > > 3)Downloaded and installed "PyQt4-4.10-gpl-Py3.3-Qt5.0.1-x64-2.exe" from http://www.riverbankcomputing.com/software/pyqt/download , here: "C:\Python33" (It was the setup's default choice so i assumed it was also the right one). > > > > And thats it.. > > > > What should i do exactly now foks :) > > Thx in advance
[toc] | [prev] | [next] | [standalone]
| From | "D. Xenakis" <gouzounakis@hotmail.com> |
|---|---|
| Date | 2013-04-02 13:42 -0700 |
| Message-ID | <34f2f92b-5ec1-4aa8-8080-7e550c0ff70d@googlegroups.com> |
| In reply to | #42582 |
I had also installed in the past python 2.7 . Now when im trying to run a .py, interpreter 2.7 is always being called.. (also when im right clicking and sellecting to run in IDLE, 2.7 is agai n starting instead of 3.3) so PyQt4 is crashing. Any tip to make 3.3 the default interpreter plz?
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web