About 194,000 results
Open links in new tab
  1. How can I convert a .py to .exe for Python? - Stack Overflow

    Steps to convert .py to .exe in Python 3.6 Install Python 3.6. Install cx_Freeze, (open your command prompt and type pip install cx_Freeze. Install idna, (open your command prompt and type pip install …

  2. How can I make a Python script standalone executable to run without …

    Jan 24, 2017 · I'm building a Python application and don't want to force my clients to install Python and modules. So, is there a way to compile a Python script to be a standalone executable?

  3. How to convert exe back to Python script - Stack Overflow

    Recently I converted a .py file to a .exe file. I lost the original .py file and I'm left with the exe file. I converted it with pyinstaller. Is there any way to reverse this to get my original .py...

  4. Python to EXE file in one file - Stack Overflow

    Jun 22, 2020 · PyInstaller works up to Python 3.5. Once you've installed it (type in your terminal pip install pyinstaller), you can do in your terminal: pyinstaller --onefile script.py where script.py is the …

  5. How can I make an EXE file from a Python program?

    Sep 8, 2008 · 99 Auto PY to EXE - A .py to .exe converter using a simple graphical interface built using Eel and PyInstaller in Python. py2exe is probably what you want, but it only works on Windows. …

  6. exe - How to convert python .py file into an executable file for use ...

    There are two distinct ways of freezing python scripts to create executables: Packing the interpreter and *.pyc files into one exe file-container. Such an approach is used by tools like PyInstaller, Py2exe, …

  7. How do I convert a Python program to a runnable .exe Windows …

    May 15, 2012 · 0 There is another way to convert Python scripts to .exe files. You can compile Python programs into C++ programs, which can be natively compiled just like any other C++ program.

  8. How can I convert .py to .exe on Linux? - Stack Overflow

    Jun 30, 2020 · 1 It is possible using auto-py-to-exe (on a Linux machine). Refer to this link to install it using pip and understand how it works. After pip installing it, from the directory containing the Python …

  9. python - How to my "exe" from PyCharm project - Stack Overflow

    You cannot directly save a Python file as an exe and expect it to work -- the computer cannot automatically understand whatever code you happened to type in a text file.

  10. How to compile multiple python files into single .exe file using ...

    Jul 19, 2017 · I have created a GUI (using Tkinter) in python and this runs python files on click of a button from GUI using os.system ('python_file.py'). I wanted to bundle all these python files into …