Seeing this. *`You have no currently running Agen...
# ask-community
m
Seeing this.
You have no currently running Agents configured to pick up flow runs without labels
How do I set a Local Agent to pick up flow runs without labels? And/or see what labels my agents are looking for? I don't see where my Agent's labels are.
k
Try
prefect agent local start --no-hostname-label
. There is an Agent tab you can click in the UI to see your agents. The labels will be there.
m
@Kevin Kho Sweet, thanks! Agent's trying to run it now.
But now I'm getting
ImportError('Unable to import dulwich, please ensure you have installed the git extra')
I did install Prefect with
conda install -c conda-forge prefect[git] -y
though
huzzah, just had to install dulwich manually
k
What version of Prefect are you on?
m
Using Prefect Cloud for the scheduling and stuff, and whatever gets loaded when you install Prefect from conda
k
Ok might open an issue for dulwich, it’s the second time I’ve seen it. Thanks for mentioning 🙂
m
Sweet, thanks!
I think conda maybe doesn't install extras right sometimes too?
k
You are right with this one that conda doesn’t install extras so I don’t think there’s any action item for us here. More info . You can install it with
conda install -c conda-forge prefect dulwich
i guess.
👍 1