Getting Started
Setup
If you’re having trouble, please review our common issues and solutions document.
Installation
Run the following command in your terminal to install Open Interpreter.
pip install open-interpreter
Terminal usage
After installation, you can start an interactive chat in your terminal by running:
interpreter
Python usage
To start an interactive chat in Python, run the following:
import interpreter
interpreter.chat()
You can also pass messages to interpreter
programatically:
interpreter.chat("Get the last 5 BBC news headlines.")
Click here to learn how to stream its response into your application.