OpenAGI
v0.1.0
v0.1.0
  • Getting started
    • πŸ“Introduction
    • πŸ”§Installation
    • πŸš€Quickstart
  • Components
    • πŸ‘¨β€πŸ’ΌAdmin
    • πŸ‘·Workers
    • πŸ—‚οΈPlanner
    • 🧠LLM
    • πŸ”§Action
      • πŸ› οΈTools
    • 🧠Memory
    • πŸ“¦VectorStore
      • πŸ’ΎChromaStorage
  • πŸ› οΈUSE CASES
    • 🎬Movie Recommender Agent
    • πŸ”JobSearch Agent
    • ✍️Blog Writing Agent
    • πŸ“°News Agent
    • πŸ“…Itinerary Planner
  • πŸ’¬ACKNOWLEDGMENT
    • πŸ…Special Mentions
  • πŸ“žContact Us
Powered by GitBook
On this page
  1. Getting started

Installation

To install OpenAGI, lets practice some best practice by creating a virtual environment and installing the package.

Setup a virtual environment

# For Mac users
python3 -m venv venv
source venv/bin/activate

# For Windows users
python -m venv venv
venv/scripts/activate

# to create virtual env using particular python version (in Windows)
py -3.11 -m venv venv

Install the Package

pip install openagi
PreviousπŸ“IntroductionNextQuickstart

Last updated 10 months ago

πŸ”§