- Install docker: https://docs.docker.com/engine/install/ubuntu/.
-
Grant permission to docker via
sudo chmod 666 /var/run/docker.sock. -
If you encounter an error that
/var/run/docker.sockdoesn’t exist, you may find the actual path todocker.sockand create a soft link. For example, Docker Desktop stores this file at~/.docker/desktop/docker.sock, in which case you may use:sudo chmod 666 ~/.docker/desktop/docker.sock sudo ln -s ~/.docker/desktop/docker.sock /var/run/docker.sock
-
Run
docker psto check that permission has been granted with the Docker daemon.
-
Clone the repository:
git clone https://github.com/Just-Curieous/Curie.git cd Curie -
Put your LLM API credentials under
curie/setup/env.sh. Example:export MODEL="gpt-4o" export OPENAI_API_KEY="sk-xxx"