linux编程 - Linux开发出现No Package found,如何解决问题?
天蓬老师
天蓬老师 2017-04-17 16:40:26
0
3
663
天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(3)
巴扎黑

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

伊谢尔伦

Ubuntu:

apt-file search libname

Centos:

yum provides libname
迷茫

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

centos:

yum groupinstall Development tools

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!