Face Recognition Python script.
Working on the jetson nano and also on windows using a USB camera.
jetson nano: sudo sh archiconda.sh -b -p /opt/archiconda3
now runnig conda3 install
sudo /opt/archiconda3/bin/conda install scikit-learn
conda create -n [Virtualenv_Name] python=3.7 scikit-learn
export PATH="/opt/archiconda3/bin:$PATH"
conda info --envs
source activate py37
then install opencv through the sh script
sudo sh install_opencv4.0.0_Nano.sh
after this you will have scikit-learn installed on the virtual environment and also opencv 4.0.0
cd /usr/local/python/cv2/python-3.6
/opt/archiconda3/bin/conda
/opt/archiconda3/bin/conda --version
Conda allows you to create separate environments containing files, packages and their dependencies that will not interact with other environments. So I created a py37 environment with scikit-learn
on windows what worked was
py -m pip install opencv
py -m pip install scikit-learn