运行命令:
$ sqlite3
后出错提示:
sqlite3 symbol lookup error sqlite3 undefined symbol sqlite3_sourceid
是因为有两个版本的sqlite3,
$ vim /etc/profile
在最末行添加:
PATH="/usr/bin:$PATH"
保存退出、
$ ldconfig
或
$ source /etc/profile
即可 原文链接:https://www.f2er.com/sqlite/199912.html