运行捆绑的Python应用程序时出错

时间:2019-04-07 18:20:48

标签: python macos pyinstaller

我使用Pyinstaller捆绑了一个Python应用程序。但是,运行代码时出现“找不到文件”错误。该代码打开一个TXT文件并读取它。我应该将TXT文件放在哪里才能使捆绑的应用正常工作?这是我的代码:

def count_allwords(text):
count = 0
with open(text) as f:
    for line in f:
        words = line.split()
        count = count + len(words)
print('\nThere are '+ str(count) + " words in " + '"' + text + '"!\n\n')
print('Original Text:')
print_all_words(text)

0 个答案:

没有答案