SVN使用错误的sqlite版本

SVN使用错误的sqlite版本

本文介绍了SVN使用错误的sqlite版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从/usr/local/bin/运行我的svn时,它说:

when running my svn from /usr/local/bin/ it says:

sqlite3 --version给我3.7.13

sqlite3 --version gives me 3.7.13

出了什么问题,我该如何解决?我使用的是Mac OS X(10.6.8).

What went wrong and how can I fix it?I'm on Mac OS X (10.6.8).

//edit1:

/usr/local/bin/sqlite3-版本3.7.13

/usr/local/bin/sqlite3 --version 3.7.13

/usr/bin/sqlite3-版本3.7.13

/usr/bin/sqlite3 --version 3.7.13

//edit2:我通过自制软件安装svn并显式使用/usr/local/bin/svn来解决"此问题

//edit2: I "fixed" this by installing svn via homebrew and using /usr/local/bin/svn explicitly

(请注明答案)

对于Mac用户:

  • 通过自制程序或您使用的任何方法(重新)安装svn(可能需要brew link --force sqlite3)

对于Fedora用户:

  • 尝试yum update sqlite3yum install sqlite

推荐答案

我遇到了同样的问题,我解决了下载 http://www.sqlite.org/sqlite-amalgamation-3.7.6.3.tar.gz ,使用tar/gunzip解压缩存档,并从结果中解决sqlite3.c目录进入$ svn-src-folder/sqlite-amalgamation/sqlite3.c.

I experienced the same issue, I solved downloading http://www.sqlite.org/sqlite-amalgamation-3.7.6.3.tar.gz, unpacking the archive using tar/gunzip and coping sqlite3.c from the resulting directory into $svn-src-folder/sqlite-amalgamation/sqlite3.c.

运行configure/make/sudo make install,您应该解决.

Run configure/make/sudo make install and you should solve.

这篇关于SVN使用错误的sqlite版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 07:12