root@pynq:/home/xilinx/pynq/protobuf-3.0.0# chmod +x configure chmod: cannot access 'configure': No such file or directory已经有为何无法运行
时间: 2024-01-31 22:04:26 浏览: 95
这个错误可能是因为您没有正确下载或提取protobuf库文件。请确保您已经正确下载了protobuf库文件,并且在当前工作目录下提取了该文件。另外,也可以尝试使用以下命令来授予configure文件执行权限:
```
chmod +x ./configure
```
请注意,"./" 是必需的,以确保命令在当前目录下执行。
相关问题
root@pynq:/home/xilinx/pynq/protobuf-3.0.0# ./configure.ac --help bash: ./configure.ac: Permission denied
这个命令无法执行,因为它是一个自动配置脚本(configure)的辅助文件 configure.ac。你可以使用以下命令来运行 configure 脚本:
```
./configure --help
```
请确保你有在该目录下的执行权限。如果没有,请使用以下命令赋予执行权限:
```
chmod +x configure
```
注意,这些命令可能需要在安装了 autoconf 和 automake 工具之后才能运行。
./configure --prefix=/Users/admin/Downloads/protobuf-3.1 3.0 zsh: no such file or directory: ./configure
这个错误提示表明在当前目录下并没有名为 `configure` 的文件,因此它无法找到这个文件并执行它。
请确认你是否在正确的目录下执行了该命令。如果该目录确实存在 `configure` 文件,则可能是文件权限的问题。你可以尝试使用 `chmod` 命令为该文件添加执行权限,例如:
```
chmod +x configure
```
然后再次运行 `./configure` 命令。
阅读全文