本文主要是介绍Dart plugin not installed; this adds Dart specific functionality. Flutter plugin not installed;,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Android已经安装了dart插件,但是flutter doctor检测没有安装,使用下面命令修改,注意改一下android studio 的版本号,跟你本地安装的android studio版本号保持一致,我的是4.2;
ln -s ~/Library/Application\ Support/Google/AndroidStudio4.2/plugins ~/Library/Application\ Support/AndroidStudio4.2
出现该问题的原因:是mac电脑上安装了2.2.3的版本,因开发需要本地切换到flutter版本(1.17.3),导致找不到android Studio的flutter和dart插件(之前AS工具已安装这两个插件)
如果不行话,再使用下面的两个命令:(注意下面的两个路径,每个人可能不太一样)
flutter config --android-studio-dir /Applications/Android\ Studio.app/Contents
flutter config --android-sdk /Users/58/Library/Android/sdk
一、如何快速切换flutter版本
1、使用fvm管理工具 https://blog.csdn.net/phunxm/article/details/117317291
2、通过修改配置文件,红框里的部分是对应flutter版本,修改完可能会找不到flutter和dart插件,
flutter安装步骤:
https://flutter.dev/docs/get-started/install/macos#downloading-and-installing-with-homebrew
这篇关于Dart plugin not installed; this adds Dart specific functionality. Flutter plugin not installed;的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!