Skip to content

Instantly share code, notes, and snippets.

@VTacius
Last active August 29, 2015 14:20
Show Gist options
  • Save VTacius/123b0ed7b3d5d1d5cf3b to your computer and use it in GitHub Desktop.
Save VTacius/123b0ed7b3d5d1d5cf3b to your computer and use it in GitHub Desktop.
Instalando DB Browser for SQLite en Fedora

DB Browser for SQLite se instala sin mayores problemas en Fedora 21 instalando previamente las siguientes dependencias:

yum install qt-devel cmake gcc-c++ sqlite-devel

Después, puede seguirse tranquilamente los pasos descritos para Ubuntu Linux, que en principio son los mismos que para Generic Linux and FreeBSD, pero con más estilo

tar xzvf sqlitebrowser-<version>.tar.gz
cd  sqlitebrowser-<version>
mkdir build
cd build
cmake ..
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment