Create a single executable from a Python project

前端 未结 3 1507
梦谈多话
梦谈多话 2020-11-22 05:01

I want to create a single executable from my Python project. A user should be able to download and run it without needing Python installed. If I were just distributing a p

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-22 05:21

    pyinstaller is still under active development. You can see the latest changes on GitHub.

    It has support for all three major platforms:

    • Windows (32-bit and 64-bit)
    • Linux (32-bit and 64-bit)
    • Mac OS X (32-bit and 64-bit)

    and it supports Python versions 2.6 and 2.7. It does not support Python 3, but there is an experimental Python 3 branch.

    Update

    As of version 3.2.1 it supports Python 2.7, 3.3-3.5

提交回复
热议问题