Answers for "how to convert .py file to .exe"

4

how to convert a pyw to exe

#if you dont have pyinstaller so run the cmd (winkey + r and write cmd and enter)
#now run the command bellow

	pip install pyinstaller
    
#now run this

	pyinstaller -w file_name.pyw
    #if you want the exe to be in one file without other folders 
    #change the code to: pyinstaller -w --onefile file_name.pyw
    
    
#change file_name to your file's name and if you aren't running the cmd in the
#same directory so instead of the file's name write the all path
#now you will have a directory named Build and in it you will find your exe file
#note - if your pyw filw has dependents so they will be in the file so dont remove them
Posted by: Guest on January-09-2021
19

python to exe

pip install pyinstaller

cd FullPathOfFile in cmd console
pyinstaller --onefile pythonScriptName.py
# a .exe file is created in the FullPathOfFile\dist
Posted by: Guest on May-29-2020
1

how to convert .py file to .exe

Hold shift and right click where your python file is located
and then type

pyinstaller 'fileName.py'
to convert to a simple exe file the exe file will be in your dist folder

pyinstaller --onefile 'fileName.py'
to convert to a onefile exe file the exe file will be in your dist folder

pyinstaller -w --onefile 'fileName.py'
to convert to a onefile exe file and the python window will not appear

# {(NOTE: DON'T DO THIS IF YOU PROGRAM IS CONSOLE BASED)}
# {(IF YOU HAVE MADE A GAME USING PYGAME OR USING ANYTHING ELSE
#   WHERE CONSOLE IS NOT USED THEN IT'S FINE)}
# For more help you can click the link bellow
# It's 12 min tutorial of codewithharry
Posted by: Guest on February-25-2021
1

how to convert python to exe

Install pip using
	pip install pyinstaller

in the directory of the source code file run
	pyinstaller <file_name>.py
Posted by: Guest on September-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language