You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Welcome to the AgentGPT CLI! This CLI will generate the required .env files.
Copies of the generated envs will be created in ./next/.env and ./platform/.env.
Existing ./next/env file found. Validating...
? How will you be running AgentGPT? 🐋 Docker-compose (Recommended)
node:events:495
throw er; // Unhandled 'error' event
^
Error: spawn docker-compose ENOENT
at ChildProcess._handle.onexit (node:internal/child_process:284:19)
at onErrorNT (node:internal/child_process:477:16)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
Emitted 'error' event on ChildProcess instance at:
at ChildProcess._handle.onexit (node:internal/child_process:290:12)
at onErrorNT (node:internal/child_process:477:16)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
errno: -2,
code: 'ENOENT',
syscall: 'spawn docker-compose',
path: 'docker-compose',
spawnargs: [ 'up', '--build' ]
}
Node.js v18.20.3
root@agentgpt:~/AgentGPT# docker -v
Docker version 26.1.4, build 5650f9b`
Steps to reproduce
Run setup.sh
Choose the docker-compose option
Possible solution
Change docker-compose up --build to docker compose up --build
Which Operating Systems are you using?
Android
iPhone/iPad
Linux
macOS
Windows
Acknowledgements
My issue title is concise, descriptive, and in title casing.
I have searched the existing issues to make sure this bug has not been reported yet.
I am using the latest version of AgentGPT.
I have provided enough information for the maintainers to reproduce and diagnose the issue.
The text was updated successfully, but these errors were encountered:
I've had the same issue but i've found a fix for me,
I have Kali linux
I didn't have the docker compose plugin, and for some reason when i was trying to install it i couldn't locate the package, so i've installed it manually from the documentation which installs it as "docker compose"
Once i had docker composed plugin, i've changed in all of the files that include "docker-compose" with "docker compose" and it solved the issue, and i've added the shell, basically:
dockerComposeUp.on("close", (code) => {
if (code !== 0) {
console.error(docker compose exited with code ${code});
process.exit(code);
}
});
}
`
I did it in the other files as-well:
./cli/src/questions/sharedQuestions.js
Hope that helps, sorry for the format
Please check that this issue hasn't been reported before.
Expected Behavior
It would install
Current behaviour
It fails with the following error `root@agentgpt:~/AgentGPT# ./setup.sh
up to date, audited 159 packages in 2s
37 packages are looking for funding
run
npm fund
for details1 low severity vulnerability
To address all issues, run:
npm audit fix
Run
npm audit
for details.█████╗ ██████╗ ███████╗███╗ ██╗████████╗ ██████╗ ██████╗ ████████╗
██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝██╔════╝ ██╔══██╗╚══██╔══╝
███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ ██║ ███╗██████╔╝ ██║
██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ██║ ██║██╔═══╝ ██║
██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ╚██████╔╝██║ ██║
╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝
Welcome to the AgentGPT CLI! This CLI will generate the required .env files.
Copies of the generated envs will be created in
./next/.env
and./platform/.env
.Existing ./next/env file found. Validating...
? How will you be running AgentGPT? 🐋 Docker-compose (Recommended)
node:events:495
throw er; // Unhandled 'error' event
^
Error: spawn docker-compose ENOENT
at ChildProcess._handle.onexit (node:internal/child_process:284:19)
at onErrorNT (node:internal/child_process:477:16)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
Emitted 'error' event on ChildProcess instance at:
at ChildProcess._handle.onexit (node:internal/child_process:290:12)
at onErrorNT (node:internal/child_process:477:16)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
errno: -2,
code: 'ENOENT',
syscall: 'spawn docker-compose',
path: 'docker-compose',
spawnargs: [ 'up', '--build' ]
}
Node.js v18.20.3
root@agentgpt:~/AgentGPT# docker -v
Docker version 26.1.4, build 5650f9b`
Steps to reproduce
Possible solution
Change docker-compose up --build to docker compose up --build
Which Operating Systems are you using?
Acknowledgements
The text was updated successfully, but these errors were encountered: