Fireboltz / Psychic-CCTV

A video analysis tool built completely in python.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bash Script

Vishwaak opened this issue · comments

Summary

There are few more system packages that need to be installed for the complete compilation of the program. Here are the few packages which are needed to be installed.

  • tkinter:
  • python-dev
  • portaudio19-dev

Aditional Task:

  • Automate the process of installing required packages from requirements.txt

Device and OS version

  • Linux
  • MacOS

Hi, could you please assign this one to me?

Hi @Vishwaak, I want to do it, assign this to me.

@aolaria Any progress on this issue?

@Vishwaak Any reasons why the below packages are not added to the requirements.txt? Also if you want to add it to requirements.txt file, what version of the following packages will work with your project?

tkinter:
python-dev
portaudio19-dev

There is no specific reason as such for not hard coding the version of the package. The latest version of the packages will do.

@Vishwaak I was looking into how this works here and I just wanted to confirm if you want to automate the following steps, as I was not able to find any steps for this in the README.

  1. create virtualenv
    virtualenv -p python3 myenv

  2. Activate the environment using:
    source myenv/bin/activate

  3. Now installing the requirements.txt file using:
    pip3 install -r requirements.txt