How to bundle a Python application including dependencies?

前端 未结 7 2065
心在旅途
心在旅途 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:49

    I've had much better results with dependencies and custom folder structures using pyinstaller, and it lets you find and specify hidden imports and hooks for larger dependencies like numpy and scipy. Also a PITA, though.

提交回复
热议问题