Skip to content

Latest commit

 

History

History
57 lines (44 loc) · 814 Bytes

SETUP.md

File metadata and controls

57 lines (44 loc) · 814 Bytes

Installation

The easy way

  • Clone the repository
$ git clone https://github.com/ab-anand/Video-Encryption.git
  • Move inside the folder
$ cd Video-Encryption
  • Run setup file
$ bin/setup
  • If the above command doesn't work, try running:
$ bash bin/setup.sh
  • start the server
$ python3 capture_frames.py playback.mp4

OR (The hard way)

  • Install pip
$ sudo apt-get install python3-pip
  • Install virtual environment
$ sudo pip3 install virtualenv
  • Create virtual environment:
$ virtualenv -p python3 envname
  • Activate the environment:
$ source envname/bin/activate
  • Install the requirements using requirements.txt file:
$ pip install -r requirements.txt