pyinstallerの実行時のエラー
これまで何事もなく使えていたが、下記エラーが発生
test.py
use pyinstaller --clean to fix it
・
・
・
File "<string>", line 323
SyntaxError: unexpected character after line continuation character
hello.py(print("hello")のみのファイル)でも同様のエラー
エラー内容としては、
空白"\n"が認識できていないようだった
調べてみても原因不明
【解決策】
test.py
pyinstaller hello.py --onefile
↓
pyinstaller --clean hello.py
--cleanでキャッシュを削除すると他のファイルに関してもすべてexe化することができた。