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)?
1 条评论
排序方式
日期
投票数
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).
请先登录再写评论。