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

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
3

python code to exe file

#first install pyinstaller using 
#pip install pyinstaller
#open your cmd
#first change the directory by using
cd The_path_of_your_code in control panel
#then write simple command given below
pyinstaller --onefile your_script_name.py
#now the file will have its exe file in short period of time
Posted by: Guest on May-28-2021
0

python to exe

$ pyinstaller cli.py --onefile
Posted by: Guest on June-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language