Home  >  Q&A  >  body text

linux编程 - Linux开发出现No Package found,如何解决问题?

天蓬老师天蓬老师2718 days ago665

reply all(3)I'll reply

  • 巴扎黑

    巴扎黑2017-04-17 16:42:26

    Some projects will have a configure file that requires you to run it before make.

    This configure file is used to detect whether your current environment has the dependencies required to compile the project. If not, an error will be reported.

    You need to install the corresponding dependencies according to the error prompts until no errors are reported when executing the configure file.

    The configure file is actually a script file. You can use shell language, python language (the configure file of nodejs is nodejs written in python language) or other languages ​​to write it yourself

    Or use tools such as autoconf to generate

    reply
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-17 16:42:26

    Ubuntu:

    apt-file search libname

    Centos:

    yum provides libname

    reply
    0
  • 迷茫

    迷茫2017-04-17 16:42:26

    Crudely install the common development toolset directly. If the project has special needs, install it separately.

    centos:

    yum groupinstall Development tools

    reply
    0
  • Cancelreply