OpenAGI
OpenAGI
OpenAGI
  • 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πŸ“IntroductionNextπŸš€ Quickstart

Last updated 11 months ago