尝试在Mac上使用pyinstaller创建应用程序时发生错误

时间:2020-02-03 19:58:46

标签: python macos tkinter pyinstaller

我正在尝试使用pyinstaller将简单的python代码转换为应用程序:

<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>

<script type="text/javascript">

var today = new Date();
var displayDay = today.getDate();
var displayMonth = today.getMonth();
var displayYear = today.getFullYear();

var checkFor = "photos/photo_" + displayYear + displayMonth + displayDay + ".html";

$.ajax({
    type: 'HEAD',
    url: checkFor,
success: function() {
        // page exists
    location.href=checkFor;
},
error: function() {
        // page does not exist
    location.href="photosredirect.html";
}
});

</script>

我使用以下命令将其转换为应用程序:

import tkinter as tk
root=tk.Tk()
root.mainloop()

但是当我运行它时,programm打开一个错误控制台:

pyinstaller main.py

为什么我会收到此错误?请帮助我。

PS我正在使用python 3.8

0 个答案:

没有答案