No such file or directory: 'D:\\资料\\铜陵外场第三天\\下午\\均值截图/3-13000-100y'
时间: 2023-08-16 08:06:19 浏览: 83
这个错误提示是因为你的代码中指定的文件或目录路径不存在。请确保路径是正确的,并且文件或目录确实存在于指定位置。如果你在Windows操作系统中使用反斜杠作为路径分隔符,请注意在字符串中使用双反斜杠或者使用原始字符串来表示路径。另外,还要注意路径中是否包含了特殊字符或空格,可能会导致文件或目录无法被正确识别。
相关问题
No such file or directory : No such file or directory : No such file or directoryk
I'm sorry, could you please provide more context or information about the issue you are facing? What command or action are you trying to perform? And what is the full error message you are seeing?
./configure --prefix=/Users/admin/Downloads/protobuf-3.1 3.0 zsh: no such file or directory: ./configure
这个错误提示表明在当前目录下并没有名为 `configure` 的文件,因此它无法找到这个文件并执行它。
请确认你是否在正确的目录下执行了该命令。如果该目录确实存在 `configure` 文件,则可能是文件权限的问题。你可以尝试使用 `chmod` 命令为该文件添加执行权限,例如:
```
chmod +x configure
```
然后再次运行 `./configure` 命令。
阅读全文