skillfed

open-interpreter

Let language models run code

open-interpreter v0.4.3 222.4K downloads/30d#9,265 on PyPI
License unclear DORMANT released

What it is and what it does

Open Interpreter is a Python package that bridges language models and your local machine by letting an LLM write and execute code (Python, JavaScript, Shell, and more) in response to natural-language requests. You interact with it through a ChatGPT-like terminal interface or programmatically via Python; before any code runs, you must approve it. This gives an LLM access to your computer's general capabilities—file manipulation, browser automation via Chrome, data analysis, image and video editing—without uploading data to a hosted service.

The package depends on 32 runtime libraries including nltk, pydantic, litellm (for multi-LLM support), selenium and webdriver-manager (for browser control), matplotlib (for plotting), and jupyter-client (for code execution). It supports Python 3.9 through 3.12 and can run against OpenAI, Anthropic, or any OpenAI-compatible local inference server. The main trade-off is that you grant the LLM significant local execution privileges, mitigated only by the approval step.

Use it for:

  • Automate data cleaning and analysis by describing the task in natural language instead of writing Python
  • Control a web browser to scrape, research, or fill forms without writing Selenium code directly
  • Generate and edit media files (photos, videos, PDFs) by describing the desired output
  • Prototype and debug code interactively by chatting with an LLM that can run and iterate on your scripts
  • Run computationally intensive tasks locally without uploading sensitive data to a cloud API

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Open Interpreter lets language models execute code (Python, JavaScript, Shell) locally on your machine through a natural-language chat interface, with user approval required before each command runs.

Yes, with conditions. Install if you want a natural-language interface to local code execution and can accept the security model (user approval before each command). However, the package is dormant (no releases in 657 days), carries an unclear license, and depends on 32 libraries—audit the license and dependencies before use in production or proprietary work. Not suitable if you need active maintenance or a stable, well-documented API.

Install

open-interpreter on PyPI

pip

pip install open-interpreter

uv

uv add open-interpreter

poetry

poetry add open-interpreter

Installing open-interpreter

Before you install

Low install friction with a pure-Python wheel. The package is dormant (657 days since last release) and carries 32 runtime dependencies including heavy libraries like selenium, matplotlib, and jupyter-client, which may slow initial setup and increase the attack surface.

License in practice

License treatment is unclear—no SPDX identifier or raw license text is available in the metadata. Verify the actual license before using in proprietary or commercial contexts.

Quickstart

pip install open-interpreter

from interpreter import interpreter
interpreter.chat("Plot AAPL and META's normalized stock prices")

Requires Python 3.9 or later. An LLM API key (OpenAI, Claude, or compatible local server) must be configured; the package does not work offline without additional setup.

Verify before relying

  • Whether dormant status (657 days since release) indicates active maintenance or abandonment
  • Actual license identifier and terms (metadata shows 'unclear')
  • Security implications of 32 runtime dependencies, especially selenium and webdriver-manager
  • Whether all 32 dependencies are truly required at runtime or if some are optional

Package facts

License not declared (unclear)
Python support supports the current Python release (<4,>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 32 — nltk, setuptools, astor, git-python, inquirer, pyyaml, rich, six, tokentrim, wget, psutil, pyreadline3, html2image, send2trash, ipykernel, jupyter-client, matplotlib, toml, tiktoken, platformdirs, pydantic, google-generativeai, pyperclip, yaspin, shortuuid, litellm, starlette, html2text, selenium, webdriver-manager
Maintenance dormant — 657 days since the last release
First released
Downloads 222,360/month — #9,265 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: open_interpreter-0.4.3-py3-none-any.whl

Programming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.9

Tags

llm code execution localnatural language programming interfaceai run code on computerchatgpt code interpreter alternativelanguage model shell access
code-executionllm-integrationautomation

More Artificial Intelligence packages