Description
I noticed some confusion around the watch feature installation.
I originally installed Graphify using pip in the 0.3.x releases. After upgrading to 0.8.x and switching to the recommended uv installation method, the watch command stopped working and always showed:
PS C:\> graphify watch
error: watchdog not installed. Run: pip install watchdog
PS C:\>
Following the suggested pip install watchdog command did not resolve the issue.
I only discovered the solution after finding issue #178. The watch functionality requires installing the optional extra:
uv tool install "graphifyy[watch]"
It would be helpful to add this information to the README so users know that the watch feature is not included by default and requires the [watch] extra during installation.
This could save users from spending time troubleshooting the watchdog not installed error.
Description
I noticed some confusion around the
watchfeature installation.I originally installed Graphify using
pipin the 0.3.x releases. After upgrading to 0.8.x and switching to the recommendeduvinstallation method, thewatchcommand stopped working and always showed:Following the suggested
pip install watchdogcommand did not resolve the issue.I only discovered the solution after finding issue #178. The
watchfunctionality requires installing the optional extra:uv tool install "graphifyy[watch]"It would be helpful to add this information to the README so users know that the
watchfeature is not included by default and requires the[watch]extra during installation.This could save users from spending time troubleshooting the
watchdog not installederror.