Last active
March 12, 2026 06:50
-
-
Save akora/b74a2af53a3cfa2ec1a0 to your computer and use it in GitHub Desktop.
Disable iPhoto's face recognition on Mac OS X Yosemite. Run from command line.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defaults write com.apple.iPhoto PKFaceDetectionEnabled 0 | |
| # then right click your PhotoLibrary in Finder (in your Pictures folder) and remove the following files: | |
| # Faces.db (in Pictures/iPhoto Library/Database/apdb) | |
| # Faces folder (in Pictures/iPhoto Library/Database) |
Author
Hi there,
Did a bit of a research, unfortunately, nothing came up that could be useful. The command still works on Tahoe, at least it did not return any errors, but I cannot confirm that it actually does the thing it's supposed to do.
Thanks for taking the time. Yeah indd, I came to a similar conclusion. Can unload photoanalysisd but I'm unsure if this prevents facial stuff as it's hard to verify.
launchctl bootout gui/$(id -u) /System/Library/LaunchAgents/com.apple.photoanalysisd.plist
launchctl disable gui/$(id -u)/com.apple.photoanalysisd
ps aux | grep photoanalysisdI don't use Photos.app all together, but maybe this helps someone
Author
Thanks a lot for sharing, awesome!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Any updates on this?