简体   繁体   English

如何从 horsicq github 在 ubuntu 20.04 上轻松构建检测?

[英]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 .我从这个链接克隆了项目: https : //github.com/horsicq/Detect-It-Easy而且我不知道接下来要做什么,read.me 说这个命令:chmod a+x configure ./configure make make install 但它不起作用。 i want to check docs from command line for java project我想从命令行检查 java 项目的文档

  1. git clone --recursive https://github.com/horsicq/DIE-engine.git "--recursive" is very important. git clone --recursive https://github.com/horsicq/DIE-engine.git "--recursive" 非常重要。 It clones all module它克隆所有模块
  2. chmod a+x configure It makes the file "configure" executable. chmod a+x configure它使文件“configure”可执行。
  3. ./configure "configure" checks if the system has all nessecary packages. ./configure "configure" 检查系统是否有所有必要的包。 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对于 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 make它编译项目
  5. sudo make install It installs the program to system sudo make install安装程序到系统

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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