Closed Technologicat closed 11 months ago
In talkinghead/tha3/app/app.py, there are two instances of:
talkinghead/tha3/app/app.py
full_path = os.path.join(os.getcwd(), os.path.normpath("talkinghead\\tha3\\images\\inital.png"))
which fails on Linux, because the path separator character is wrong.
The correct cross-platform way to do this is:
full_path = os.path.join(os.getcwd(), os.path.normpath(os.path.sep.join(["talkinghead", "tha3", "images", "inital.png"])))
Making that change, it works for me (Linux Mint 21.1).
Fixed, thanks.
That was fast! Thanks!
In
talkinghead/tha3/app/app.py
, there are two instances of:which fails on Linux, because the path separator character is wrong.
The correct cross-platform way to do this is:
Making that change, it works for me (Linux Mint 21.1).