Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.1 KB

File metadata and controls

55 lines (38 loc) · 1.1 KB

Ubuntu & Debian

  • Update software sources.

    > sudo apt update
  • Install Git.

    > sudo apt install git
  • Install Node.js 16. You can use NVM (Node Version Manager) to install and manage multiple Node.js versions:

    > nvm install 16
    > nvm use 16
  • Install dependencies for Linux builds and compilation environment for third-party dependencies.

    > sudo apt install rpm
    > sudo apt install make g++ libfontconfig-dev

CentOS

  • Update software sources.

    > sudo yum update
  • Install Git.

    > sudo yum install git
  • Install Node.js 16. You can use NVM (Node Version Manager) to install and manage multiple Node.js versions:

    > nvm install 16
    > nvm use 16
  • Install dependencies for Linux builds and compilation environment for third-party dependencies.

    > sudo yum install rpm-build
    > sudo yum install make gcc-c++ freetype-devel fontconfig-devel