Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tteurs/e4c29456bd6471912db8c070e775ec25 to your computer and use it in GitHub Desktop.
Save tteurs/e4c29456bd6471912db8c070e775ec25 to your computer and use it in GitHub Desktop.
OpenDevin Installation
git clone https://github.com/OpenDevin/OpenDevin.git
cd OpenDevin
conda create -n od python=3.10
conda activate od
docker ps
(optional) install docker if not already installed
docker pull ghcr.io/opendevin/sandbox
export OPENAI_API_KEY={your key}
(optional I had to install rust) curl --proto '=https' --tlsv1.2 -sSf [https://sh.rustup.rs](https://sh.rustup.rs/) | sh
(optional) restart terminal
python -m pip install -r requirements.txt
(optional) orjson issue (MacOS)
- pip uninstall orjson
- pip install --no-cache-dir --only-binary :all: orjson
uvicorn opendevin.server.listen:app --port 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment