Skip to content

Commit ea85c7b

Browse files
committed
docs: add poppler-utils requirement to Step 11 backend setup
- Add system dependency note for poppler-utils in Step 11 - Required for PDF document processing/extraction - Include installation instructions for Ubuntu/Debian, macOS, Windows - Note that Docker Compose already includes it - Helps users avoid document processing failures Fixes: Document extraction failing due to missing poppler-utils
1 parent 187fa0f commit ea85c7b

1 file changed

Lines changed: 24 additions & 1 deletion

File tree

notebooks/setup/complete_setup_guide.ipynb

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3183,7 +3183,30 @@
31833183
"# Backend API: http://localhost:3000/api/\n",
31843184
"```\n",
31853185
"\n",
3186-
"**Note:** The notebook below uses Option 1 (direct start) for development. For Option 2, use Docker Compose commands.\n"
3186+
"**Note:** The notebook below uses Option 1 (direct start) for development. For Option 2, use Docker Compose commands.\n",
3187+
"\n",
3188+
"### ⚠️ System Dependencies for Document Processing\n",
3189+
"\n",
3190+
"**Important:** If you plan to use document extraction features (PDF processing), you need to install `poppler-utils` on your system:\n",
3191+
"\n",
3192+
"**Ubuntu/Debian:**\n",
3193+
"```bash\n",
3194+
"sudo apt-get update\n",
3195+
"sudo apt-get install poppler-utils\n",
3196+
"```\n",
3197+
"\n",
3198+
"**macOS:**\n",
3199+
"```bash\n",
3200+
"brew install poppler\n",
3201+
"```\n",
3202+
"\n",
3203+
"**Windows:**\n",
3204+
"- Download from: http://blog.alivate.com.au/poppler-windows/\n",
3205+
"- Or use: `choco install poppler`\n",
3206+
"\n",
3207+
"**Note:** If you're using Docker Compose (Option 2), `poppler-utils` is already included in the backend container. This requirement only applies when running the backend directly (Option 1).\n",
3208+
"\n",
3209+
"After installation, restart the backend server for the changes to take effect.\n"
31873210
]
31883211
},
31893212
{

0 commit comments

Comments
 (0)