Skip to content

Commit

Permalink
windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
dickreuter committed Dec 3, 2023
1 parent 1e7a24c commit 150509f
Showing 1 changed file with 21 additions and 0 deletions.
Expand Up @@ -17,6 +17,27 @@ jobs:
with:
python-version: '3.11.5'

- name: Install Tesseract
run: |
choco install tesseract
echo "C:\Program Files\Tesseract-OCR" >> $GITHUB_PATH
- name: Refresh Environment
run: |
refreshenv
- name: Check PATH
run: |
echo "PATH: $env:PATH"
- name: List Tesseract Directory
run: |
ls "C:\Program Files\Tesseract-OCR"
- name: Test Tesseract Command
run: |
"C:\Program Files\Tesseract-OCR\tesseract.exe" --version
- name: Install dependencies
run: |
pip install -r requirements.txt
Expand Down

0 comments on commit 150509f

Please sign in to comment.