Flutter 错误:找不到名为 frontend_server.dart.snapshot 的命令

问题描述 投票:0回答:1

当我尝试使用

flutter pub get
安装依赖项时,我不断得到这个答案。 无论我(在 Ubuntu 上)做什么,它都会持续存在。即使我卸载了 flutter,尝试了 fvm,然后是 asdf。

[INFO] Precompiling build script......
ERROR: ERROR: ERROR: Could not find a command named "/home/username/snap/flutter/common/flutter/bin/cache/dart-sdk/bin/snapshots/frontend_server.dart.snapshot".

我尝试过缓存清除、缓存修复、清理、...

flutter dart ubuntu installation snap
1个回答
0
投票

我最终能够通过删除项目中的所有

pubspec.lock
文件然后再次运行
flutter pub get
来修复它。

一个 flutter beta 版本似乎存在一个问题,它将依赖项放在那里,如果不清理 pubspec 文件,我就无法摆脱它。

© www.soinside.com 2019 - 2024. All rights reserved.