Creating an porting executable files for Mac OS X?

How can I export a python 2.7.5 script with python-binded opencv 2.4.8 modules as an executable file for a mac (.app) or .py file that will execute on a machine that does not have pyopencv (and probably has python ver 2.7.6)?
0
1 comment
You can't do this out of the box with PyCharm, but there are Python frameworks that allow you to create executable files. One of them is cx_freeze. It allows you to include pip packages into the executable (including native libraries).
0

Please sign in to leave a comment.