Skip to content

Commit

Permalink
created script for installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
meenakshiravisankar committed Oct 28, 2019
1 parent b482433 commit d0f4698
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
# Create virtual environment
python3 -m venv traffic-analysis-env
source traffic-analysis-env/bin/activate
# Installing dependencies
pip3 install -r requirements.txt

# Install tesseract for OCR
sudo add-apt-repository ppa:alex-p/tesseract-ocr
sudo apt-get update
sudo apt install tesseract-ocr libtesseract-dev

0 comments on commit d0f4698

Please sign in to comment.