日本語フォントを使おうとした際に出るエラーに関して
resource_add_path("C:/Users/info/AppData/Local/Microsoft/Windows/Fonts")
LabelBase.register(DEFAULT_FONT,"日本語フォント.otf")
※otfは拡張子のため、フォントによっては色んな拡張子があります。
Fontのパスを、Windowsのプロパティのままコピーすると
ディレクトリの区切り文字が\になっていますが、
/に変更すると読み込みはうまくいきます。
よく出るエラー内容はこちら
Traceback (most recent call last):
File "c:\Users\info\Desktop\MyPython\sample.py", line 9, in <module>
File "C:\Users\info\anaconda3\lib\site-packages\kivy\core\text\__init__.py", line 315, in register
raise IOError('File {0} not found'.format(font_type))
OSError: File ZakkuriGothic-BLK.otf not found