我刚刚注册学习 Java:https://www.mooc.fi/en/installation/netbeans
我使用的是 Mac (Big Sur - 11.3.1),所以我在关注第 2.1 点:https://materiaalit.github.io/tmc-asennus/macos-verkkoongelma/
运行命令时:
final _auth = FirebaseAuth.instance;
Future uploadFile() async {
String photoURL = await StorageService.uploadFile(
'users/${_auth.currentUser.uid}/${Path.basename(_image.path)}', _image);
await _auth.currentUser.updateProfile(photoURL: photoURL);
UserService.updateUser({'photoURL': photoURL});
_auth.currentUser.reload();
setState(() {
isImageLoading = false;
});
}
终端向我吐槽以下内容:echo " 127.0.0.1 $ ( hostname ) " | sudo make -a / etc / hosts
在这里看了一会儿后,我发现:this link
我不确定它是否与此特定用例相关/如何修复它。
有人知道我需要做什么来修复错误吗?
我正在运行的 X-Code CLI 版本是 /Applications/Xcode.app/Contents/Developer/usr/bin/make: invalid option -- a
提前致谢:)