1pip install pyinstaller
2
3cd PathOfFile
4
5pyinstaller --onefile -w ScriptName.py
6
7(note that if you are using -w then your python file has to be an application and the file will be inside the "dist" folder)
1
2import sys, string, os, arcgisscripting
3os.system("C:/Documents and Settings/flow_model/flow.exe")
1# Открыть командную строку windows
2# Установить pyinstaller
3
4pip install pyinstaller
5
6# Затем перейти в папку с Вашим файлом .py в командной строке (при помощи команды cd)
7# Запустить команду pyinstaller не забудьте указать имя вашего скрипта
8
9pyinstaller --onefile <your_script_name>.py
10
11# Всё - у вас в папке появится папка src и там будет .exe файл.
12
13
1# In the command line, install pyinstaller
2python -m pip install pyinstaller
3
4# You might need to add pyinstaller to path. You can do that
5# by adding the "scripts" folder in your python installation to path
6pyinstaller yourprogram.py