Mac端flutter权限的处理
新创建的flutter文件使用xcode打开时会出现build Faild:Please ensure that the SDK and/or project is installed in a location that has read/write permissions for the current user.出现这个错误时就是权限问题了,可以尝试以下方法来进行权限修改没从而成功运行项目。
·
新创建的flutter文件使用xcode打开时会出现build Faild:
Please ensure that the SDK and/or project is installed in a location that has read/write permissions for the current user.
出现这个错误时就是权限问题了,可以尝试以下方法来进行权限修改没从而成功运行项目。
1.创建一个flutter项目:
cd xxx/xxx/文件名
sudo flutter create customName
2.开启权限:
cd xxx/xxx/文件名/customName
//意思是所有人对这个项目可读可写可执行
sudo chmod -R 777 customName
如果打开项目是还是提示权限问题,再进行下面命令
cd ../
sudo chmod -R 777 *
flutterSDK也进行一下权限修改:
cd 到flutterSDK文件目录下,输入:
sudo chmod -R 777 *
每次修改权限都会要求输入电脑密码,按照指令输入即可;
PS:如果不知道该开启哪个权限,那就把上述指令都来一遍就OK了
更多推荐
已为社区贡献3条内容
所有评论(0)