Skip to content

📦 Installation Guide

🚀 Quick Start

pip install bazario
poetry add bazario
pipenv install bazario
uv pip install bazario
#or
uv add bazario

💡 Pro Tip

For development purposes, install with extra dependencies:

  • to install with dishka

    pip install 'bazario[dishka]'
    

  • to install with punq

    pip install 'bazario[punq]'
    


🔧 Requirements

System Requirements

  • Python 3.10 or higher
  • pip 24.0 or higher
  • Virtual environment (recommended)
Supported Python Versions
Version Status
3.13
3.12
3.11
3.10
< 3.10

🔍 Verification

Verify Installation

import bazario

print(f"Bazario version: {bazario.__version__}")

Expected Output

Bazario version: 0.4.1

🎯 Next Steps

Getting Started

  1. ✨ Create your first application
  2. 📖 Read the documentation
  3. 🔧 Configure your environment
  4. 🚀 Deploy your application

Best Practices

  • Use virtual environments
  • Keep dependencies updated
  • Follow the security guidelines
  • Check for updates regularly

❓ Troubleshooting

Common Issues

ImportError: No module named 'bazario'
Solution: Verify installation and Python path
pip list | grep bazario

pkg_resources.VersionConflict
Solution: Update dependencies
pip install --upgrade bazario

Permission denied: '/usr/local/lib/python3.x/site-packages'
Solution: Use virtual environment or --user flag
pip install --user bazario


⚠️ Important Notes

  • Always backup your data before upgrading
  • Check compatibility with your existing code
  • Review the changelog before updating
  • Test in development environment first

🎉 Ready to Start!

You've successfully installed Bazario! Check out our Quick Start Guide to begin building your application.