-
-
Notifications
You must be signed in to change notification settings - Fork 77
Description
QuickPiperAudiobook --config /home/admin/.config/QuickPiperAudiobook/config.yaml
2026/02/22 10:54:27 FATA Error reading config file: open /home/admin/.config/QuickPiperAudiobook/config.yaml: The system cannot find the path specified.
The system cannot find the path specified" indicates that the file location cannot be accessed, not that the file format is problematic. This error typically occurs due to one of the following reasons:
Path does not exist: The specified path may not exist on your system. The ~ symbol might not be properly expanded in PowerShell, especially if you're using a non-interactive session or a different shell context.
File permissions: You may not have the necessary read permissions for the file or directory. This is particularly common when running commands in restricted environments or without proper administrative privileges.
Path expansion issues: In PowerShell, the ~ symbol might not be interpreted as the user's home directory, unlike in some Unix-like shells.
which reason?