解决"-bash: make: command not found"提示问题

2021-07-22 14:20:54 浏览数 (1)

前言

在用VPS安装Python环境的时候有出现"-bash: make: command not found"提示问题,一般我们很多时候安装软件也会出现这样的问题。

解决方法

Centos

代码语言:javascript复制
yum -y install gcc automake autoconf libtool make

Debian或者Ubuntu

代码语言:javascript复制
apt-get install gcc automake autoconf libtool make

命令运行完毕,我们再去重新编译脚本是可以运行的。

0 人点赞