# Open Interpreter
Lets language models run code.
After installing interpreter (open-interpreter python package), it's possible to chat with it through a ChatGPT-like interface in the terminal, give the LLM orders, and then it takes over and DOES things for you (e.g., control a Chrome browser, create/edit photos, PDFs, etc).
## Windows installation
- Installed Python 3.11 from the Windows store
- Added `C:\Users\<username>\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\Scripts` to the Windows path
- Executed
- `pip install open-interpreter`
- `pip install "starlette==0.37.2"`
- `pip install "fastapi>=0.111.0"`
- `pip install "pydantic>=2.6.4"`
- `pip install "uvicorn>=0.30.1"`
- `pip install "janus>=1.0.0"`
- `pip install pyautogui opencv-python plyer pywinctl`
- Started open-interpreter OS mode: `interpreter --os`
- Added Anthropic API key taken from Anthropic's dashboard
## References
- https://www.openinterpreter.com/
- Sources: https://github.com/OpenInterpreter/open-interpreter