Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Steps on howto install PySide on windows

I followed what they said at pyside.org but somehow i can't get it to work. I downloaded the two files that they are linking from their site (qt libraries and pyside for python 2.6)

When I try one of their examples I get the following message:

Traceback (most recent call last):
  File "2dpainting.py", line 28, in <module>
    from PySide.QtCore import *
ImportError: DLL load failed: The specified module could not be found.

I use python 2.6.4 and windows 7

like image 292
Forested Avatar asked Sep 10 '10 16:09

Forested


1 Answers

You need to add the QT bin directory ("C:\Qt\4.6.3\bin") to your path environment variable.

like image 163
Mark Avatar answered Oct 14 '22 07:10

Mark