Build the module and install ./autorun.sh: 31: ./autorun.sh: make: not found
时间: 2024-04-24 17:23:54 浏览: 194
It seems like the 'make' command is not found on your system. The 'make' command is usually used to build and compile software modules.
To resolve this issue, you can try installing the 'build-essential' package which includes 'make' and other necessary build tools. You can do this by running the following command:
```shell
sudo apt-get install build-essential
```
After installing the package, try running the './autorun.sh' script again. It should be able to find the 'make' command and proceed with the build process.
阅读全文