comment faire un exe python
pip install pyinstaller
cd YourFilePath
pyinstaller --onefile YourFileName
Condemned Cowfish
pip install pyinstaller
cd YourFilePath
pyinstaller --onefile YourFileName
import os
os.startfile("C:\Documents and Settings\flow_model\flow.exe")
pip install pyinstaller
cd FullPathOfFile in cmd console
pyinstaller --onefile pythonScriptName.py
# a .exe file is created in the FullPathOfFile\dist
Install pip using
pip install pyinstaller
in the directory of the source code file run
pyinstaller <file_name>.py
pyinstaller --onefile filename.py
#in Terminal
pip install pyinstaller
pyinstaller myscript.py