为什么我会得到这个结果以及如何解决它?

问题描述 投票:0回答:1

我在实习中使用 macOS 进行 Flutter 移动开发。 我从上周四早上就遇到了这两个问题。

Flutter device daemon #5 exited (exit code 127), stderr: env: bash: No such file or directory
The Flutter device daemon cannot be started. Please check your configuration and restart the IDE.  You may need to increase the maximum number of file handles available globally.`

当我尝试构建APK时,android studio返回NO SDK环境问题。我尝试了一些终端代码来解决它。但现在我遇到了新的问题,Android studio 不调试代码并返回上面的错误。当我启动它时,我在终端中看到这样的错误

.sdkman/bin/sdkman-init.sh:42: command not found: uname
   .sdkman/bin/sdkman-init.sh:75: command not found: find
   .sdkman/bin/sdkman-init.sh:103: command not found: _sdkman_echo_debug
   .rvm/scripts/rvm:12: command not found: uname
   .rvm/scripts/rvm:29: command not found: ps

和终端返回

command not found:

对于 nano open sudo 等命令 当我写 flutter 时,我会返回

env: bash: No such file or directory

android flutter bash macos system
1个回答
0
投票

导出 PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" 我使用了这个命令,然后终端开始接受像 sudo nano 这样的命令,最后我以管理员模式安装了 android studio。 现在我可以再次使用它们了

© www.soinside.com 2019 - 2024. All rights reserved.