react-native-ai-debugger 1.0.42 → 1.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,7 +81,7 @@ Skills can also be triggered **automatically** — each skill file contains a "W
|
|
|
81
81
|
- Node.js 18+
|
|
82
82
|
- React Native app running with Metro bundler
|
|
83
83
|
- **Optional for iOS UI automation**: [Facebook IDB](https://fbidb.io/) - `brew install idb-companion`
|
|
84
|
-
- **Optional for
|
|
84
|
+
- **Optional for OCR**: Python 3.6+ (EasyOCR is installed automatically, see [OCR Setup](#ocr-text-extraction))
|
|
85
85
|
|
|
86
86
|
## Claude Code Setup
|
|
87
87
|
|
|
@@ -1095,9 +1095,20 @@ The tool uses EasyOCR (Python-based) for text recognition. It provides excellent
|
|
|
1095
1095
|
|
|
1096
1096
|
### EasyOCR Setup
|
|
1097
1097
|
|
|
1098
|
-
EasyOCR and its Python dependencies are installed automatically by the `node-easyocr` package
|
|
1098
|
+
EasyOCR and all its Python dependencies (PyTorch, OpenCV, etc.) are installed automatically into an isolated virtual environment by the `node-easyocr` package — no need to run `pip install` manually. The only prerequisite is having Python 3.6+ available on your system:
|
|
1099
1099
|
|
|
1100
|
-
|
|
1100
|
+
```bash
|
|
1101
|
+
# macOS
|
|
1102
|
+
brew install python@3.11
|
|
1103
|
+
|
|
1104
|
+
# Ubuntu/Debian
|
|
1105
|
+
sudo apt install python3
|
|
1106
|
+
|
|
1107
|
+
# Windows
|
|
1108
|
+
# Download from https://www.python.org/downloads/
|
|
1109
|
+
```
|
|
1110
|
+
|
|
1111
|
+
On the first OCR call, language models (~100MB for English) are downloaded automatically. This may take a moment, but subsequent calls use the cached models.
|
|
1101
1112
|
|
|
1102
1113
|
### OCR Language Configuration
|
|
1103
1114
|
|