@Amethyst1 I extracted the file using Pacifist. What is the next step to replace the file on Sorbet with this one? I don't know how to use Terminal to replace a file.
1. Fire up
Applications > Utilities > Terminal.
2. Back up the current version of the library:
2.1. Type
sudo cp /usr/lib/libsqlite3.0.dylib /usr/lib/libsqlite3.0.sorbet
2.2. Press [Enter], enter your password, press [Enter] again.
3. Replace the library:
3.1. Type
sudo cp
but don't press Enter!
3.2. Press the space bar once, then drag the extracted file into the Terminal window so that its full path appears on the command line. Don't press [Enter] just yet!
3.3. Press the space bar once, then add
/usr/lib/libsqlite3.0.dylib
to the command.
3.4. The full command should now look something like this, but the path to the extracted library will be different:
sudo cp /Users/john/Desktop/libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
3.5. Press [Enter], type your password, press [Enter] again.
4. Fix ownership of the library:
4.1. Type
sudo chown root:wheel /usr/lib/libsqlite3.0.dylib
4.2. Press [Enter], type your password, press [Enter] again.
5. Fix permissions of the library:
5.1. Type
sudo chmod 755 /usr/lib/libsqlite3.0.dylib
5.2. Press [Enter], type your password, press [Enter] again.
6. Reboot for good measure and hope for the best.