# Installation ## Requirements - Python 3.10 or higher - No external dependencies (uses only Python standard library) ## Install from PyPI ```bash pip install smartasync ``` ## Install from Source ```bash git clone https://github.com/genropy/smartasync.git cd smartasync pip install -e . ``` ## Verify Installation ```python from smartasync import smartasync print("SmartAsync installed successfully!") ``` ## Optional Dependencies For development: ```bash pip install smartasync[dev] ``` For documentation: ```bash pip install smartasync[docs] ``` ## Next Steps - [Quick Start →](quickstart.md) - [Basic Usage →](basic.md)