Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Preview app doesn't open since I installed MACOS Catalina

import PIL
img = PIL.Image.new("RGB", (100,100))
img.show()

The error message:

FSPathMakeRef(/Applications/Preview.app) failed with error -43.

like image 578
gogo32 Avatar asked Mar 03 '23 04:03

gogo32


1 Answers

Following from Sean True's answer, an even quicker but temporary fix is to simply make a symbolic link to Preview.app in the old location. In the terminal run

ln -s /System/Applications/Preview.app /Applications/Preview.app

This fixed the problem for me.

like image 178
Simon Avatar answered Mar 16 '23 21:03

Simon