-
-
Save mberman84/5ebdd660dce3b5474515ee91a82f4746 to your computer and use it in GitHub Desktop.
git clone https://github.com/stitionai/devika.git | |
conda create -n devika python=3.10 | |
conda activate devika | |
which python | |
/usr/local/anaconda3/envs/devika/bin/python -m pip install -r requirements.txt | |
playwright install --with-deps | |
npm install | |
bun run dev | |
open new terminal | |
conda activate devika | |
rename sample.config.toml | |
fill out config.toml |
Restart your pc. Then run these commands ollama serve git clone https://github.com/stitionai/devika.git cd devika/ uv venv source .venv/bin/activate uv pip install -r requirements.txt playwright install --with-deps cd ui/ bun install bun run dev cd .. python3 devika.py
What is mean python3 devika.py ? I have no python3 install and it's dives and error and python devika.py runs it but interface not respond. Instructions don't explain what python version to use and why they use uv command. This readme works only on clean windows installation without any other installs.
source .venv/bin/activate
this is best run to on its own bare metal linux containers. its not a windows "app" - you'll run into a lot of dependency and path errors using windows
source .venv/bin/activate
this is best run to on its own bare metal linux containers. its not a windows "app" - you'll run into a lot of dependency and path errors using windows
Thank you ! I figured out too that run at least on WSL the best way
[WinError 10013] An attempt was made to access a socket in a way forbidden by its access permissions: ('0.0.0.0', 1337) i this error in windows anyone know how to fix it , this is after python devika.py
did you solve this error?
I noticed that the steps followed by Mr Berman to install devika do not work for most. But if you follow the steps on the Devika Repo itself, they work perfectly.
https://github.com/stitionai/devika
Key points to note is
Install uv - Python Package manager (https://github.com/astral-sh/uv)
Install bun - JavaScript runtime (https://bun.sh/docs/installation)
Install and setup Ollama (https://ollama.com/) (if you don't want to use the local models then you can skip this step)
Restart your pc. Then run these commands
ollama serve
git clone https://github.com/stitionai/devika.git
cd devika/
uv venv
source .venv/bin/activate
uv pip install -r requirements.txt
playwright install --with-deps
cd ui/
bun install
bun run dev
cd ..
python3 devika.py
Matthew skipped several steps, because he is always bench marking LLMS and he probably already has most of these installed.
Also, on every step, restart your computer. Like for real. It makes all the difference.
Again, here, i have summarized a lot. Visit the DEVIKA Repo and follow the steps there, step by step.