From bd38da989a1d4748376f406d23ea4c136ee268b2 Mon Sep 17 00:00:00 2001 From: Mohammad Fares Date: Mon, 23 Jul 2018 11:08:07 +0300 Subject: [PATCH] Add instructions to install developement tools --- README.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/README.md b/README.md index fc7556b..85ac6d2 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,50 @@ npm install -g terminalizer

+If the installation failed, you may need to install the developement tools to build the `C++` addons. + +For MacOS + +```bash +xcode-select --install +``` + +For RHEL, CentOS, Scientific Linux, Fedora + +```bash +yum update +yum groupinstall "Development Tools" +``` + +For Debian, Ubuntu and derivatives + +```bash +sudo apt-get update +sudo apt-get install build-essential +``` + +For openSUSE/SUSE + +```bash +zypper refresh +zypper update +zypper install -t pattern devel_C_C++ +``` + +For Arch Linux and derivatives + +```bash +sudo pacman -Syyu +sudo pacman -S base-devel +``` + +Verifying Installation + +```bash +gcc -v +make -v +``` + ## Getting Started Start recording your terminal using the command `record`.