Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 798 Bytes

setup.mdx

File metadata and controls

39 lines (25 loc) · 798 Bytes
title
Setup

You will need to install Python 3.10. Click here to learn how.

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.