In the simplest use-case, just navigate to the directory your file is in, and type:
pyinstaller myfile.py
Pyinstaller analyzes the file and creates:
A myfile.spec file in the same directory as myfile.py
A build folder in the same directory as myfile.py
A dist folder in the same directory as m...