up vote 2 down vote favorite

I have an app that uses the python/c api and I was wondering what files I need to distribute with it? The app runs on Windows and links with libpython31.a Are there any other files? I tried the app on a seperate Win2k system and it said that python31.dll was needed so theres at least one.

Edit - My app is written in C++ and uses the Python/C api as noted below.

flag

Does the distutils command python setup.py bdist_win work for you? – J.F. Sebastian Oct 22 '09 at 4:44
Wait, wait, wait... it complains about python31.dll? That comes with Python, meaning that Python isn't installed. But then....how do you run it? Do you mean that this is a non-Python app, ie an EXE-file, that calls into Python? – Lennart Regebro Oct 22 '09 at 5:08
Thats exactly what I mean. – George Edison Oct 22 '09 at 5:38
OK, that's unclear from the question (as the C-API also works the other way, ie from Python), so you may want to update that. I think that the DLL is the only one, but I only read that and have never done it, so I don't know, so not an answer, just a comment. :) – Lennart Regebro Oct 22 '09 at 5:48

2 Answers

up vote 2 down vote accepted

The best way to tell is to try it on 'clean' installations of windows and see what it complains about. Virtual machines are a good way to do that.

link|flag
Thanks. I did that and found out I need python31.dll and python31.zip which is an archive of the Libs folder. – George Edison Oct 25 '09 at 20:44
up vote 1 down vote

You'll need at least Python's own DLL (release-specific) and the wincrt DLL version it requires, also Python version depended (if you want to run on releases of Windows that don't come with that DLL). The popular py2exe, the not-widely-know but hugely powerful Pyinstaller (NOTE: use the svn version, not the released version which is aeons behind), and similar package-makers, do a good job of identifying and solving all such dependencies, so there's no case for doing it by hand!

link|flag

Your Answer

get an OpenID
or
never shown

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