我用flutter开发windows桌面程序,我安装了visual studio 2019企业版,全装,50G以上。我刚安装了可以改变D盘路径的部分。但是在执行flutter doctor之后,为什么会出现以下提示?
error:
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel dev, 1.23.0-7.0.pre, on Microsoft Windows [Version 10.0.18363.1082], locale zh-CN)
[!] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses
[!] Visual Studio - develop for Windows (Visual Studio Enterprise 2019 16.0.0)
X The current Visual Studio installation is incomplete. Please reinstall Visual Studio.
[√] Android Studio (version 4.0)
[!] IntelliJ IDEA Community Edition (version 2019.3)
X Flutter plugin not installed; this adds Flutter specific functionality.
X Dart plugin not installed; this adds Dart specific functionality.
[√] IntelliJ IDEA Ultimate Edition (version 2018.1)
[√] Connected device (1 available)
! Doctor found issues in 3 categories.发布于 2020-10-10 05:58:43
来自doctor的特定错误消息意味着vswhere工具为isComplete属性报告了false。这意味着您的Visual Studio安装存在问题(或者至少,Microsoft的工具认为存在问题)。
https://stackoverflow.com/questions/64279507
复制相似问题