我已经使用'pyinstaller --onefile script.py'从'script.py'文件创建了.exe文件,并且.exe生成成功。 在原始的“ script.py”中运行平稳而没有。我有一个输入功能,供用户输入所需的路径名。创建.exe后,它给出语法错误。
path_1 = input('Enter path to folder which contains unzipped folders : ')
os.chdir(path_1)
cwd = os.getcwd()
print("Current working directory is:", cwd)
file= os.listdir(path_1)
all_xlsx_files_old = list(filter(lambda x: x.endswith('.xlsx'), os.listdir(path_1)))
当从py文件中删除输入功能(用于目录)并创建.exe时,.exe运行正常。
有没有办法为用户提供目录输入并创建.exe以使其正常工作。