Converting .py to .exe with Anaconda

后端 未结 3 1892
有刺的猬
有刺的猬 2021-01-01 00:04

I made a python program using PyGame which is only available for Python 2.7 so that is my python version. I am using Anaconda because it is easier to install modules and to

相关标签:
3条回答
  • 2021-01-01 00:43

    Another solution is Conda Constructor.

    Constructor is a tool which allows constructing an installer for a collection of conda packages. It solves needed packages using user-provided specifications, and bundles those packages. It can currently create 3 kinds of installers, which are best thought of as delivery vehicles for the bundled packages. There are shell installers, MacOS .pkg installers, and Windows .exe installers. Each of these will create an environment on the end user's system that contains the specs you provided, along with any necessary dependencies. These installers are similar to the Anaconda and Miniconda installers, and indeed constructor is used to create those installers.

    0 讨论(0)
  • 2021-01-01 00:53

    Instead of using py2exe you could try to build your executable with pyinstaller.

    http://www.pyinstaller.org/downloads.html

    The PyGame package is also supported with pyinstaller according to this link

    https://github.com/pyinstaller/pyinstaller/wiki/Supported-Packages

    0 讨论(0)
  • 2021-01-01 01:01

    How to create an executable using Anaconda 3 (specifically Anaconda Prompt) for Windows.

    1 - Make sure pyinstaller is installed in your anaconda

    pip install pyinstaller

    2 - Move to the directory of your python script

    cd C:\Users....\program.py

    3 - Just type the following:

    pyinstaller --onefile program.py

    If everything goes well, in the folder where you have your script.py you it will be created many folders and your executable is inside folder "dist".

    If my explanation is confusing go here: https://medium.com/dreamcatcher-its-blog/making-an-stand-alone-executable-from-a-python-script-using-pyinstaller-d1df9170e263

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