ubuntu安装sqlite可视化工具sqliteman,$ sudo apt-get install sqliteman
,如果失败,可参考以下方法。
- 先确定安装成功了sqlite
- 在
/etc/apt/sources.list
文件后面添加下面的的内容(用超级权限编辑然后再保存)
deb http://old-releases.ubuntu.com/ubuntu/ raring main universe restricted multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ raring main universe restricted multiverse
deb http://old-releases.ubuntu.com/ubuntu/ raring-security main universe restricted multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ raring-security main universe restricted multiverse
deb http://old-releases.ubuntu.com/ubuntu/ raring-updates main universe restricted multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ raring-updates main universe restricted multiverse
deb http://old-releases.ubuntu.com/ubuntu/ raring-backports main restricted universe multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ raring-backports main restricted universe multiverse
deb http://old-releases.ubuntu.com/ubuntu/ raring-proposed main restricted universe multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ raring-proposed main restricted universe multiverse
- 然后在命令行输入 :
$ sudo apt-get update
4.更新完成后, 再安装
$ sudo apt-get install sqliteman
5.在命令行输入 sqliteman 即可弹出图形化界面
$ sqliteman
转自:https://blog.csdn.net/iambaixiaocheng/article/details/89963474
网友评论