简体   繁体   中英

How to build detect it easy on ubuntu 20.04 from horsicq github?

i have cloned project from this link: https://github.com/horsicq/Detect-It-Easy And i don't know what to do next, read.me says this commands : chmod a+x configure ./configure make make install But it doesn't work . i want to check docs from command line for java project

  1. git clone --recursive https://github.com/horsicq/DIE-engine.git "--recursive" is very important. It clones all module
  2. chmod a+x configure It makes the file "configure" executable.
  3. ./configure "configure" checks if the system has all nessecary packages. If it fails you should install these packages. For Ubuntu: sudo apt-get install --quiet --assume-yes build-essential qt5-default qtbase5-dev qttools5-dev-tools qtscript5-dev
  4. make It compiles the project
  5. sudo make install It installs the program to system

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM