我需要最新版本中刚刚添加到 sqlite3 中的生成列功能。我只需用新下载的二进制文件替换相关的 sqlite3.dll,就可以让它在 Windows 上的 python 应用程序中工作。我现在正在将我的应用程序移植到树莓派(debian),但作为 Linux 菜鸟,我无法找到 sqlite3 可执行文件。记住所有让我头晕的权限和所有者的东西;我想知道,这可以在 Linux 上完成吗?如果可以的话怎么做?
答案1
要在 Linux 上查找可执行文件的位置,请使用which
或whereis
.但是,建议使用包管理器来更新软件。 debian 使用 apt。
# sudo apt-get update
# sudo apt-get install sqlite3
# which ls
/usr/bin/ls
# whereis ls
ls: /usr/bin/ls /bin/ls /home/james/ls.txt /usr/share/man/man1/ls.1.gz /usr/share/man/man1p/ls.1p.gz