Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13891

Tkextrafont can't find font file in compiled program

$
0
0

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'

Viewing all articles
Browse latest Browse all 13891

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>