How to bundle a Python application including dependencies?

前端 未结 7 2062
心在旅途
心在旅途 2020-11-28 03:09

I need to package my Python application, its dependencies and Python into a single MSI installer. The end result should desirably be:

  • Python is installed in th
7条回答
  •  醉梦人生
    2020-11-28 03:48

    Kind of a dup of this question about how to make a python into an executable.

    It boils down to:

    py2exe on windows, Freeze on Linux, and py2app on Mac.

提交回复
热议问题