Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working with PyInstaller under Python 2.6, which is only partially supported due to the mess MS have created with their manifest nonense which now affects Python since it is now MSVC8 compiled.

The problem is that the manifest embedding support relies on the pywin32 extensions in order to build which is a pain because without including the host's site-packages folder when I create the virtualenv (kinda defeats the point in a build environment) I cannot find a way to install the required extensions so they are accessible to PyInstaller.

Has anyone found a solution to this issue?

share|improve this question

2 Answers

I found http://old.nabble.com/Windows:-virtualenv-and-pywin32--td27658201.html which offered the following solution, which worked for me.

  1. Download the latest pywin32 installer from http://sourceforge.net/projects/pywin32/
  2. Activate your virtualenv
  3. Run easy_install blah.exe where the path matches your downloaded file

The same page offers a similar solution which didn't work for me, namely running

easy_install http://sourceforge.net/projects/pywin32/files/pywin32/Build%20214/pywin32-214.win32-py2.6.exe/download

I got the following error:

error: c:\users\blah\appdata\local\temp\easy_install-ibkzv7\pywin32-214.win32-py2.6.exe is not a valid distutils Windows .exe

This could be because I am using Distribute rather than the original setuptools easy_installer, but I prefer Distribute and am not going to install original setuptools just for this.

I rather hopefully tried "pip install" rather than "easy_install", this also didn't work.

Finally, I found but haven't tested the solution at http://www.mail-archive.com/python-list@python.org/msg272040.html which is:

Solved this by copying the pywin32.pth file into my virtualenv site-packages and editing the file to point to the path.

If the others don't work for you, maybe this will?

share|improve this answer
1  
specifically, download the pywin32 .exe installer, then do easy_install -Z on the .exe file. The -Z may not be necessary, but I always do it. – Kevin Horn May 4 '11 at 20:33
@KevinHorn: No, you're right, -Z isn't necessary, I just tried it. Thanks! – Scott Stafford Apr 21 '12 at 2:42
up vote 3 down vote accepted

OK, well since I had to find a way forward I improvised. I've internally created a git repository with a hacked-together version of pywin32 that will install within a virtualenv using the standard setup.py script. It took a lot of fiddling to make it work right but I managed to get it to load and the dependent code now works as I need it to. If people feel this would be of benefit to the community please post a comment: if I get enough I'll try and put something up on my github account.

share|improve this answer
Sure. Thanks. I'd love it. – Scott Stafford Feb 21 '12 at 22:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.