在 MacOS 上更新或禁用内置库 sqlite3?

在 MacOS 上更新或禁用内置库 sqlite3?

在 MacOS Monterey 上我安装了 subversion brew install svn

svn checkout当我在终端上执行时,我得到:

svn: E200029: Couldn't perform atomic initialization
svn: E200030: SQLite compiled for 3.36.0, but running with 3.35.3

我试过了brew install sqlite3,但是问题仍然存在(可能是因为首先找到了系统 sqlite 路径?)。

which sqlite3给出/usr/bin/sqlite3 似乎内置 sqlite3 的版本太旧(或者只是与svn正在使用的版本不同)

有什么方法可以更新内置库,或者禁用它,以便 svn 使用正确的版本?

相关内容