WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,27 @@
---------------------------------
See the file "INSTALL" in this directory, or "INSTALL_MacOS.md" for MacOS.

2. (a) ## Quick Install for Debian-based Linux Systems:
Below are the libraries needed to compile magic on Debian-based Linux. You can copy this code in your terminal to install all the required packages.

```bash
sudo apt update
sudo apt install -y build-essential \
gcc g++ make \
libcairo2-dev libncurses5-dev libncursesw5-dev \
tcl-dev tk-dev \
libx11-dev libx11-xcb-dev libxrender-dev libxcb1-dev libxft-dev \
git
```

After that paste the following in your terminal to compile and install magic:

```bash
./configure
make -j$(nproc)
sudo make install
```

3. Version 8.3 Release Notes:
---------------------------------

Expand Down