System Requirements

Before installing RunAgent, ensure your system meets these requirements:

  • Python: 3.8 or higher
  • pip: Latest version recommended
  • Operating System: Windows, macOS, or Linux
  • Memory: At least 4GB RAM recommended
  • Storage: 500MB free space

Installation Methods

Verify Installation

After installation, verify RunAgent is properly installed:

runagent --version

You should see output like:

RunAgent CLI version 1.0.0

Platform-Specific Notes

We recommend using a virtual environment:

# Create virtual environment
python -m venv runagent-env

# Activate it
# On Windows:
runagent-env\Scripts\activate
# On Unix or MacOS:
source runagent-env/bin/activate

# Install RunAgent
pip install runagent

Upgrading

To upgrade to the latest version:

pip install --upgrade runagent

Check for updates:

pip list --outdated | grep runagent

Uninstalling

To remove RunAgent:

pip uninstall runagent

# Also remove configuration (optional)
runagent teardown

Troubleshooting Installation

Next Steps