How to make my python script easy portable? or how to compile into binary with all module dependencies?

后端 未结 4 1703
谎友^
谎友^ 2020-12-24 15:32

Is there any way to compile python script into binary? I have one file python script which uses a lot of modules. What I would like is to have its copy on other machines (fr

相关标签:
4条回答
  • 2020-12-24 16:05

    cx_freeze will append your python scripts to a standalone Python loader and produce a directory containing the program, and shared library dependencies. You can then copy the resulting distribution to other machines independent of Python or your modules.

    $ cat hello.py 
    print "Hello, World!"
    $ ls dist/
    datetime.so  _heapq.so  hello  libpython2.6.so.1.0  readline.so
    $ cat hello.py 
    print "Hello, World!"
    $ cxfreeze hello.py 
    ... <snip> ...
    $ ls dist/
    datetime.so  _heapq.so  hello  libpython2.6.so.1.0  readline.so
    $ ./dist/hello
    Hello, World!
    

    A better answer may be to create a PIP package that identifies these third modules as dependencies, so installation can be as simple as "pip install mypackage; ./package"

    0 讨论(0)
  • 2020-12-24 16:06

    Python will also look for import modules in the current directory, so you don't have to install them into the python directory. Your distribution file structure might look like:

    main.py
    module1/
        __init__.py, ...
    module2/
        __init__.py, ...
    

    Where main.py has import module1, module2

    0 讨论(0)
  • 2020-12-24 16:12

    Programs that can do what you ask for are:

    • PyInstaller: http://www.pyinstaller.org/ [Windows, Linux, OS X]
    • cx_freeze: http://cx-freeze.sourceforge.net/ [Windows, Linux]
    • py2exe: http://www.py2exe.org/ [Windows]
    • py2app: http://svn.pythonmac.org/py2app/py2app/trunk/doc/index.html [os x]

    But as mentioned you can also create a Package with Distribute and have the other packages as dependencies. You can then uses pip to install that package, and it will install all of the packages. You still need to install Python and pip, though.

    0 讨论(0)
  • 2020-12-24 16:19

    You probably want to create a Python package from your script. In the end you will be able to do pip install mypackage on any host and all the required modules will be downloaded and installed automatically.

    See this question on how to create such a package.

    0 讨论(0)
提交回复
热议问题