Skip to content

Latest commit

 

History

History
58 lines (44 loc) · 1.51 KB

imports&tools.md

File metadata and controls

58 lines (44 loc) · 1.51 KB

Used Tools and Modules in Smart Parking System

Built in python libraries

  • sqlite3
  • multiprocessing
  • datetime
  • math
  • random
  • string
  • os , sys , time , io
  • tkinter
  • serial
  • concurrent.futures
  • json
  • base64

Donwload non-standard python libraries

  • pip install opencv-python
  • pip install psutil
  • pip install CProfileV
  • pip install textract
  • pip install pyautogui
  • pip install numpy
  • pip install pytesseract
  • pip install emoji

Download for google Gmail API

  • pip install google-auth google-auth-oauthlib google-auth-httplib2 google-api-python-client

  • Install all via one command :
     	pip install opencv-python psutil CprofileV textract pyautogui numpy pytesseract emoji google-auth google-auth-oauthlib google-auth-httplib2 google-api-python-client

Also install tesseract on CMD :

  1. open CMD (AS admin)
  2. run this command:
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
  1. restart CMD ( now choco is installed)
  2. run this command :choco install tesseract
  3. DONE
  • Note:
    • make sure version is tesseract 5.3.0.20221214
    • to get current installed versoin run this command: choco list --local-only tesseract