第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

試圖將python文件轉(zhuǎn)換為可執(zhí)行文件

試圖將python文件轉(zhuǎn)換為可執(zhí)行文件

我是初學(xué)者,使用 tkinter 制作了我的第一個(gè) GUI 計(jì)算器。我想將我的 py 文件轉(zhuǎn)換為 exe 文件。我嘗試使用pyinstaller,auto-py-to-exe但是當(dāng)文件準(zhǔn)備好并運(yùn)行時(shí),它顯示 Windows 錯(cuò)誤框Cannot run Script main,我的文件名是 main .import getpassfrom os import mkdirimport tkinter,os,timefrom functools import partialfrom tkinter import PhotoImagefrom tkinter.constants import SELclass Calculator(tkinter.Tk):    '''This class creates calculator using tkinter module'''    def __init__(self):        super().__init__()                # Changing height and width of window        self.geometry('279x316')        self.resizable(False,False)        self.title('Calculator')        image=PhotoImage('download.ico')        self.iconbitmap(image)        # Creating tkinter varible to store what user has entered        self.__store_value=tkinter.StringVar()        self.__store_value.set('')        #Creating entry widget for input        self.__input_user=tkinter.Entry(self,font='lucidia 20 bold',textvariable=self.__store_value)         self.__input_user.pack(fill='x')        self.bind('<Return>',partial(self.click,'='))        # This Buttons will be ther in calculator        self._button_dict={"C":"C","(":"(",")":")","/":"/",                          "9":9,"8":8,"7":7,"*":"*",                          "6":6,"5":5,"4":4,"+":"+",                          "3":3,"2":2,"1":1,"-":"-",                          "His":"His","0":0,".":".","=":"="}                                  def create_button(self,row=5,column=4):        '''Creates button in the window,button_dict contains name of each button and an argument to be given to click function when pressed,no of rows in calculator and no. of columns'''        self.__main_frame=tkinter.Frame(self)        self.__main_frame.pack(fill='both')        k=0        for i in range(row):            for r in range(column):                我在上傳 ico 圖片時(shí)出錯(cuò),所以你可以在https://github.com/01TanmayDaga/Calculator找到圖片請(qǐng)幫我!!
查看完整描述

1 回答

?
收到一只叮咚

TA貢獻(xiàn)1821條經(jīng)驗(yàn) 獲得超5個(gè)贊

有一個(gè)非常簡(jiǎn)單的解決方案,確保所有外部文件(圖標(biāo)、圖像等)都放在包含可執(zhí)行文件 (.exe) 的文件夾中。

在 的情況下PyInstaller,.exe 被放入一個(gè)名為 的文件夾中dist,只需將您在程序中使用的所有外部文件移動(dòng)到該文件夾中,它應(yīng)該可以工作。

希望它有所幫助,干杯!


查看完整回答
反對(duì) 回復(fù) 2023-05-23
  • 1 回答
  • 0 關(guān)注
  • 112 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)