Skip to content

Commit

Permalink
Updated Linux install instructions to have Ubuntu and Arch Linux inst…
Browse files Browse the repository at this point in the history
…ead of Fedora
  • Loading branch information
ruben2020 committed Mar 25, 2017
1 parent d61879f commit ea4aef3
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions doc/INSTALL-LINUX.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,29 @@ Step 1: Install CMake (>2.7), sqlite3, Qt4 (>4.7) or Qt5 (>5.7), QScintilla (2.6
[pycscope](https://github.com/portante/pycscope)
[QScintilla for Qt4 or Qt5](http://www.riverbankcomputing.com/software/qscintilla/intro)

In Ubuntu or Linux Mint, do the following (first line for Qt5 OR second line for Qt4):
In Ubuntu or Linux Mint or Debian, do the following (first line for Qt5 OR second line for Qt4):
```bash
sudo apt-get install g++ git cmake sqlite3 libsqlite3-dev qt5-default qttools5-dev-tools libqt5scintilla2-dev cscope exuberant-ctags rpm
sudo apt-get install g++ git cmake sqlite3 libsqlite3-dev qt4-dev-tools libqscintilla2-dev cscope exuberant-ctags rpm
sudo apt-get install g++ git cmake sqlite3 libsqlite3-dev qt5-default qttools5-dev-tools libqt5scintilla2-dev cscope exuberant-ctags
sudo apt-get install g++ git cmake sqlite3 libsqlite3-dev qt4-dev-tools libqscintilla2-dev cscope exuberant-ctags
```

In Fedora or Red Hat, do the following:
In Arch Linux or Manjaro or Apricity, do the following (first line for Qt5 OR second line for Qt4):
```bash
sudo dnf install gcc-c++ git cmake sqlite sqlite-devel qt-devel qscintilla-devel cscope ctags rpm-build
sudo pacman -S gcc git cmake sqlite qt5-base qt5-tools qscintilla-qt5 cscope ctags
sudo pacman -S gcc git cmake sqlite qt4 qscintilla-qt4 cscope ctags
```


Step 2: Download the repository as a ZIP file from github or clone git repository:
[codequery@github](https://github.com/ruben2020/codequery)
```bash
cd ~/workspace
cd ~/myrepos
git clone https://github.com/ruben2020/codequery.git
```

Step 3: Unzip to a directory and change to that directory.
```bash
cd ~/workspace/codequery
cd ~/myrepos/codequery
```

Step 4: Create a directory called build and change to it.
Expand Down

0 comments on commit ea4aef3

Please sign in to comment.