-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements.txt
29 lines (25 loc) · 1.37 KB
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#On linux the video capture feature works only with a Python2 installation
#Update linux -> sudo apt update
#Upgrade linux -> sudo apt upgrade
#Install python2 -> sudo apt install python2
#Check version of python2 -> python2 -V
#Update Conda navigator & updater -> conda update anaconda-navigator
#Update Conda navigator & updater-> conda update navigator-updater
#Create Conda Environment for python2 -> conda create --name py2 python=2.7.18
#Create Conda Environment for python3 -> conda create --name py3 python=3.8.5
#Activate python2 environemnt -> conda activate py2
#Deactive pyhton2 environment -> conda deactivate py2
#Check installed libraries -> conda list
#Install opencv with correct version -> conda install -c conda-forge opencv=4.1.0
#Check location(path) of conda environment interpreter -> which python
#Copy path and set it as the interpreter in your VS Code
#Run Program
#INSTALL ANY LIBRARY -> conda install -c conda-forge libname
#Install pathlib -> conda install -c conda-forge pathlib
#Install pandas -> conda install -c conda-forge pandas
#Install bokeh for data visualisation -> conda install -c conda-forge bokeh
#Install matplotliib for plotting and display -> conda install -c conda-forge matplotlib
#INSTALL LIBRARIES FOR WHATSAPP
#Install selenium -> conda install -c conda-forge selenium
#On PYTHON 3.4 or greater
#Install MTCNN -> conda install -c conda-forge mtcnn