#python #python-3.x #executable
#python #python-3.x #исполняемый файл
Вопрос:
Возможно ли создать исполняемый файл из указанного объема кода в скрипте?
Например:
#some code up here to set some things up
def oneFunction(param):
#does something here as well
def run():
varaible1 = input()
oneFunction(variable1)
#more code after this
if something == True:
#some code to create executable from the run function
else:
#do something else
Ответ №1:
Вы можете использовать cx_freeze для создания исполняемого файла из вашего py-файла.
https://cx-freeze.readthedocs.io/en/latest/overview.html