无法激活Dart Devtools

fwzugrvs  于 12个月前  发布在  其他
关注(0)|答案(9)|浏览(176)

enter image description here在VS中打开dart devtools时,它显示Dart devtools退出代码255。我甚至试图通过键入 flutter pub global activate devtools 从VS中的终端激活它,但它的显示无法找到名为“global”的“flutter pub”命令error shown on terminalerror again shown after activating devtools

brvekthn

brvekthn1#

不使用 flutter pub global activate devtools

使用此:

pub global activate devtools
这是激活devtools的正确方法(如果您的路径中有pub

信息:如果路径中有flutter,可以使用 flutter pub global activate devtools

sulc1iza

sulc1iza2#

你有两个解决方案:

  • 更新你的flutter版本
  • 写入flutter pub pub global activate my_package(是的,pub被写入两次)
p1tboqfb

p1tboqfb3#

尝试禁用您的防病毒为5分钟,然后去Flutter目录

C:\src\flutter

并运行命令

  • flutter pub global activate devtools*
    **注意:**运行此命令之前,应在env变量中设置Flutter路径。
w51jfk4q

w51jfk4q4#

要激活devtools,请使用以下命令

dart pub global activate devtools

字符串

dohp0rv5

dohp0rv55#

Ctrl + Shift + P -运行命令面板。然后运行:运行Flutter升级

htrmnn0y

htrmnn0y6#

我也遇到了同样的问题,在查看扩展页面时也会收到错误消息
加载webview时出错:错误:无法注册服务工作者:类型错误:无法注册ServiceWorker
解决这两个问题(错误255 Dart DevTools和这个webview错误)的解决方案是found here(杀死VS Code的所有示例,然后清除VS Code缓存)。

cwxwcias

cwxwcias7#

我是一个mac用户,所以你可以使用这个命令来启用dart。

export PATH="/Users/<MAC_USER_NAME>/Desktop/developer/flutter/bin/cache/dart-sdk:$PATH"

字符串

x9ybnkn6

x9ybnkn68#

我尝试了上述的解决方案,然而,它们似乎都不适合我:

flutter pub global activate devtools
The current Dart SDK version is 3.2.3.

Because pub global activate depends on devtools any which does not support null safety, version solving failed.

The lower bound of "sdk: '>=2.1.0-dev <3.0.0'" must be 2.12.0 or higher to enable null safety.
For details, see https://dart.dev/null-safety

字符串
我最终执行了dart devtools,打开了开发工具。
更多信息:https://docs.flutter.dev/tools/devtools/cli

42fyovps

42fyovps9#

如果显示此响应,则通过写入终端--> dart devtools/flutter devtools将有所帮助。

flutter pub global activate devtools
The current Dart SDK version is 3.2.3.

Because pub global activate depends on devtools any which does not support null safety, version solving failed.

The lower bound of "sdk: '>=2.1.0-dev <3.0.0'" must be 2.12.0 or higher to enable null safety.
For details, see https://dart.dev/null-safety

字符串

相关问题