In my project i using tkextrafont.Font(file="resources/fonts/cs_regular.ttf")
In IDE my program successfully working, but i starting compiled program i see this problem:WinError[2] Сannot find the specified path 'C:\\Users\\User\\AppData\\Local\\Temp\\_MEI137482\\tkextrafont'
I try using os.getcwd()
, but this method don't working.
Like this:how to use custom font with auto py to exe and tkextrafont?
https://i.stack.imgur.com/jl58q.png
My code:
import customtkinterfrom tkextrafont import Fontapp = customtkinter.CTk()app.title("my app")app.geometry("400x150")Font(file=fetch_resource('font.ttf'))logo_label = customtkinter.CTkLabel(self.sidebar_frame, text="Text",font=('Font name', 30))logo_label.grid(row=0, column=0, padx=20, pady=(20, 10))app.mainloop()
FileNotFoundError: [WinError 2]: 'C:\\Users\\test\\AppData\\Local\\Temp\\_MEI21562\\tkextrafont'