Sahar7888 commited on
Commit
64cbc74
·
verified ·
1 Parent(s): 07bb533

Delete setup.sh

Browse files
Files changed (1) hide show
  1. setup.sh +0 -23
setup.sh DELETED
@@ -1,23 +0,0 @@
1
- #!/bin/bash
2
-
3
- set -x # Enable debugging
4
-
5
- # Update package lists
6
- echo "Updating package lists..."
7
- apt-get update
8
-
9
- # Install Tesseract and required libraries
10
- echo "Installing Tesseract and required libraries..."
11
- apt-get install -y tesseract-ocr libtesseract-dev libmagickwand-dev
12
-
13
- # Check installation
14
- echo "Checking Tesseract installation..."
15
- TESSERACT_PATH=$(which tesseract)
16
- if [ -z "$TESSERACT_PATH" ]; then
17
- echo "Tesseract installation failed."
18
- else
19
- echo "Tesseract is installed at: $TESSERACT_PATH"
20
- tesseract --version
21
- fi
22
-
23
- echo "Setup script completed."