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 21abb3d
Showing 1 changed file with 14 additions and 0 deletions.
Expand Up @@ -17,6 +17,20 @@ jobs:
with:
python-version: '3.11.5'

- name: Install Tesseract
run: |
choco install tesseract
echo "C:\Program Files\Tesseract-OCR" >> $GITHUB_PATH
- name: Check Tesseract Path
run: |
Get-Command tesseract
- name: Print PATH and Check Tesseract Directory
run: |
echo "PATH: $env:PATH"
ls "C:\Program Files\Tesseract-OCR"
- name: Install dependencies
run: |
pip install -r requirements.txt
Expand Down

0 comments on commit 21abb3d

Please sign in to comment.