Skip to content

Installation

Requirements

  • Python 3.10 or higher
  • pip (or uv) package manager

Install from PyPI

pip install botmanifold

Install from Source

git clone https://github.com/botmanifold/botmanifold.git
cd botmanifold/sdk/python
pip install -e .

Verify Installation

import botmanifold
print(botmanifold.__version__)

Dependencies

The SDK automatically installs:

  • requests - HTTP client
  • click - CLI framework

Troubleshooting

ImportError: No module named 'botmanifold'

Ensure you're using the correct Python environment:

which python
pip list | grep botmanifold

SSL Certificate Errors

If you're behind a corporate proxy:

pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org botmanifold

Permission Denied

Use --user flag or a virtual environment:

pip install --user botmanifold
# or
python -m venv venv
source venv/bin/activate
pip install botmanifold