Using pyinstaller to convert Python3 and Python2 to exe

Publicado el: 24 noviembre 2023
en el canal de: CodeLearn
26
0

Download this code from https://codegive.com
PyInstaller is a popular tool for converting Python scripts into standalone executables (.exe) that can be run on Windows without requiring a Python interpreter to be installed. In this tutorial, we'll cover the basic steps to use PyInstaller to convert both Python 3 and Python 2 scripts to executable files.
Before you begin, make sure you have Python installed on your system. You can install PyInstaller using pip:
Create a Python script that you want to convert to an executable. For this tutorial, let's create a simple "hello.py" script:
Open a terminal, navigate to the directory containing your Python script, and run the following command to convert the Python3 script to a standalone executable:
This command generates a "dist" folder in the same directory as your script, and inside it, you'll find the "hello.exe" file.
If you have a Python 2 script, you can use PyInstaller with the --py2exe option. Let's assume you have a Python 2 script named "hello_py2.py":
Run the following command in the terminal to convert the Python2 script to a standalone executable:
This command also creates a "dist" folder with the "hello_py2.exe" file.
Navigate to the "dist" folder and run your executable to test it:
You should see the output of your script, and it will wait for you to press Enter before closing.
Congratulations! You have successfully converted both Python 3 and Python 2 scripts to standalone executables using PyInstaller.
Keep in mind that PyInstaller creates standalone executables that may be larger in size due to bundling the Python interpreter with the script. If you need a smaller executable, you may explore other options like cx_Freeze or py2exe.
ChatGPT


En esta página del sitio puede ver el video en línea Using pyinstaller to convert Python3 and Python2 to exe de Duración hora minuto segunda en buena calidad , que subió el usuario CodeLearn 24 noviembre 2023, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 26 veces y le gustó 0 a los espectadores. Disfruta viendo!