AgentK icon indicating copy to clipboard operation
AgentK copied to clipboard

docker error on Ubuntu

Open Rishabh-Bajpai opened this issue 1 year ago • 1 comments

Running ./agentk throws the following error

=> ERROR [agentk 7/11] RUN xargs -a apt-packages-list.txt apt-get install -y 0.3s

[agentk 7/11] RUN xargs -a apt-packages-list.txt apt-get install -y: 0.206 Reading package lists... 0.223 Building dependency tree... 0.226 Reading state information... 0.229 E: Unable to locate package chromium-driver 0.229 E: Unable to locate package cmake 0.229 E: Unable to locate package libclang-dev


failed to solve: process "/bin/sh -c xargs -a apt-packages-list.txt apt-get install -y" did not complete successfully: exit code: 123

Rishabh-Bajpai avatar Aug 29 '24 03:08 Rishabh-Bajpai

Had the same prob on mac -> fixed it 4me by changing line 3 in the Dockerfile to

RUN apt-get -y update && apt-get upgrade -y && apt-get install -y

(didn't test, if the last "&& apt-get install -y" is really necessary, maybe it also works without that)

flobotde avatar Oct 21 '24 10:10 flobotde