Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #42599
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!eweka.nl!lightspeed.eweka.nl!194.134.4.91.MISMATCH!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.003 |
| X-Spam-Evidence | '*H*': 0.99; '*S*': 0.00; 'assumed': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'thats': 0.09; 'url:software': 0.09; 'subject:Help': 0.11; 'python': 0.11; 'url:download': 0.12; '(it': 0.16; 'better:': 0.16; 'imports': 0.16; 'received:188.174': 0.16; 'received:80.91.229.3': 0.16; 'received:mnet-online.de': 0.16; 'received:plane.gmane.org': 0.16; 'do,': 0.16; 'wrote:': 0.18; 'examples': 0.20; 'import': 0.22; 'installation': 0.23; 'this?': 0.23; 'header:User-Agent:1': 0.23; 'skip:" 40': 0.26; 'header:X-Complaints-To:1': 0.27; 'header:In- Reply-To:1': 0.27; 'installed': 0.27; 'am,': 0.29; 'usually': 0.31; 'go.': 0.31; 'yes.': 0.31; "i'd": 0.34; 'test': 0.35; 'but': 0.35; 'should': 0.36; 'to:addr:python-list': 0.38; 'little': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; "you're": 0.61; 'first': 0.61; 'here:': 0.62; 'more': 0.64; 'line,': 0.68; 'default': 0.69; 'one).': 0.84; 'subject:latest': 0.84; '2013': 0.98 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Sibylle Koczian <nulla.epistola@web.de> |
| Subject | Re: Help installing latest PyQT |
| Date | Tue, 02 Apr 2013 21:44:43 +0200 |
| References | <9056d15b-1610-4e16-a2d7-f987c97fb7e9@googlegroups.com> <CAF3XjbwqkOHm1GDtiqvs-nKqQg_MWkS9cKP6vdBqZp+2OYDO4Q@mail.gmail.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=ISO-8859-1; format=flowed |
| Content-Transfer-Encoding | 7bit |
| X-Gmane-NNTP-Posting-Host | ppp-188-174-99-146.dynamic.mnet-online.de |
| User-Agent | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 |
| In-Reply-To | <CAF3XjbwqkOHm1GDtiqvs-nKqQg_MWkS9cKP6vdBqZp+2OYDO4Q@mail.gmail.com> |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.20.1364931898.3114.python-list@python.org> (permalink) |
| Lines | 39 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1364931898 news.xs4all.nl 6987 [2001:888:2000:d::a6]:44609 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:42599 |
Show key headers only | View raw
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
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
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
csiph-web