Skip to content

Commit

Permalink
Merge pull request #229 from anthony5301/main
Browse files Browse the repository at this point in the history
install.py typo
  • Loading branch information
jfd02 authored Sep 20, 2023
2 parents 8501942 + c802765 commit 2372fa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

if os.path.exists(os.path.join(current_directory,TESSEROCR311)):
print("\033[92mFound tesserocr installation file. Installing...\033[0m")
os.system('pip install ' + tesserocr311)
os.system('pip install ' + TESSEROCR311)
elif os.path.exists(os.path.join(current_directory,TESSEROCR310)):
print("\033[92mFound tesserocr installation file. Installing...\033[0m")
os.system('pip install ' + tesserocr310)
os.system('pip install ' + TESSEROCR310)
else:
print("\033[31mTesserocr installation file not found.\033[0m")

Expand Down

0 comments on commit 2372fa7

Please sign in to comment.