sudo apt install make-guile干嘛用的
时间: 2024-04-06 18:28:42 浏览: 487
这个命令的作用是在 Ubuntu 或者 Debian 等基于 Debian 的 Linux 系统上安装 Guile 的 make 模块。Guile 是一个用 Scheme 语言编写的可扩展的编程语言解释器和库。make-guile 是一个用 Guile 编写的 make 工具,它提供了一些扩展功能,例如更好的错误处理和更丰富的函数库。安装 make-guile 可以让你使用 Guile 版本的 make 工具来执行 Makefile 文件。
相关问题
root@zxy-virtual-machine:/home/zxy/myFabric# make cryptogen Command 'make' not found, but can be installed with: apt install make # version 4.3-4.1build1, or apt install make-guile # version 4.3-4.1build1 root@zxy-virtual-machine:/home/zxy/myFabric# make cryptogen Command 'make' not found, but can be installed with: apt install make # version 4.3-4.1build1, or apt install make-guile # version 4.3-4.1build1
It seems that the 'make' command is not found on your system. The 'make' command is usually used to compile and build software from source code. To resolve this issue, you can try installing 'make' using the following command:
```
sudo apt install make
```
After the installation is complete, you should be able to run the 'make' command successfully.
sudo apt purge binutils sudo apt remove make sudo apt autoremove sudo apt install build-essential什么意思
这是一组Linux命令,用于在Ubuntu或类似的Linux发行版上安装和卸载编译工具。
- `sudo`:以管理员权限运行命令
- `apt`:用于安装、升级和卸载软件包的命令行包管理器
- `purge`:卸载软件包及其配置文件
- `remove`:卸载软件包,但保留其配置文件
- `autoremove`:卸载所有不再需要的软件包
- `install`:安装软件包
因此,`sudo apt purge binutils`将卸载binutils软件包及其配置文件,而`sudo apt remove make`将卸载make软件包,但保留其配置文件。`sudo apt autoremove`将卸载所有不再需要的软件包,包括binutils和make。最后,`sudo apt install build-essential`将安装build-essential软件包,它是一个常用的编译工具集,包括gcc、g++、make等。这些工具在编译和构建软件时非常有用。
阅读全文