I have made a very simple browser using Qwebview in PyQt. Now i want to package it as an installer to distribute it. I have tried out py2exe. But after i do the command:
<div><br></div><div>python setup.py py2exe</div><div><br></div><div>and then try and run the .exe file created, i get an error, &quot;no module named sip found&quot;. please help me where am i going wrong. My setup.py code is as follows:</div>
<div><br></div><div><div>from distutils.core import setup</div><div><br></div><div>setup(name = &quot;Aura Browser&quot;,</div><div>      version = &quot;0.1&quot;,</div><div>      description = &quot;A tiny Web Browser&quot;,</div>
<div>      author = &quot;Anshul kumar Jain&quot;,</div><div>      author_email = &quot;<a href="mailto:anshul@seeta.in">anshul@seeta.in</a>&quot;,</div><div>      url = &quot;<a href="http://seeta.in/j/team.html">http://seeta.in/j/team.html</a>&quot;,</div>
<div>      packages = [&quot;&quot;],</div><div>      data_files = [(&quot;browser/images&quot;, [&quot;images/back.png&quot;,</div><div>                                        &quot;images/home.png&quot;,</div><div>                                        &quot;images/reload.png&quot;,</div>
<div>                                        &quot;images/next.png&quot;,</div><div>                                        &quot;images/stop.png&quot;,])]</div><div>      )</div><div><br></div><div>the code has &#39;browser.py&#39; as main file and a Qt python class file &#39;httpWidget.py&#39;</div>
<div><br></div><div>Please help me sort out the problem.</div><div><br></div><div>Thanks</div></div>