stitionai / devika

Devika is an Agentic AI Software Engineer that can understand high-level human instructions, break them down into steps, research relevant information, and write code to achieve the given objective. Devika aims to be a competitive open-source alternative to Devin by Cognition AI.
MIT License
18.3k stars 2.38k forks source link

[ISSUE] bin UI isn't working #576

Open JessChud opened 3 months ago

JessChud commented 3 months ago

7 for installation - cd ui/

bun install bun run start

is not working for me-- (.venv) JessicaComputer:devika Jessica$ cd ui/ (.venv) JessicaComputer:ui Jessica$ bun install -bash: bun: command not found (.venv) JessicaComputer:ui Jessica$ bun run start -bash: bun: command not found

Was wondering what I should do to address this? Thanks!

dagelf commented 3 months ago

https://letmegooglethat.com/?q=bun+install

Also, right on the landing page: image

Bryceed commented 3 months ago

If Bun presents issues, you can reinstall YARN on your system and initiate it using yarn followed by yarn run start. Alternatively, you can opt for the native NPM with npm install and npm run start.

Bun is recommended due to its superior performance as a Node Runtime, but it is not the sole option for running the project.