Advertisement
182days

Create EXE from .py script

Nov 25th, 2023 (edited)
575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. Create EXE from .py script
  2.  
  3. pip install pyinstaller
  4.  
  5. [from script directory]
  6. pyinstaller --onefile --noconsole your_script.py
  7.  
  8. EXE is found in dist directory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement