Waiting for another flutter command to release the

2020-02-16 06:17发布

When I run my flutter application it show

Waiting for another flutter command to release the startup lock

this messages and not proceed further.

16条回答
我想做一个坏孩纸
2楼-- · 2020-02-16 06:58

This also happens when you have opened the flutter project in the Editor. Close the Editor and re-run the command

查看更多
Viruses.
3楼-- · 2020-02-16 07:00

In my case, following command in Terminal helped (as suggested by Günter):

killall -9 dart

On Windows (as suggested by upupming):

taskkill /F /IM dart.exe
查看更多
Summer. ? 凉城
4楼-- · 2020-02-16 07:01

Remove this file:

<YOUR FLUTTER FOLDER>/bin/cache/lockfile

This releases the occupied lock and makes you able to run other commands.

查看更多
Animai°情兽
5楼-- · 2020-02-16 07:01

try this instead For Window

TASKKILL //F //IM dart.exe

This worked!

查看更多
登录 后发表回答