Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 306 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 306 Bytes

Building an executable

In the console make sure Python 3 and PyInstaller set up. To install pyinstaller type the following in the command prompt:

$pip install pyinstaller

Build the executable:

$pyinstaller --onefile minihash.py

The built file will be located in the dist folder.