1. visualStudio 설치 후 진행 - 아래 링크 참고

    [Python] you need to install visual studio for c++

  2. CMAKE 설치 - Windows x64 Installer:cmake-3.26.4-windows-x86_64.msi

    Download

  3. Dlib 다운로드

    dlib-19.19.0-cp38-cp38-win_amd64.whl

    python dlib 설치하기 - anaconda dlib install error

  4. git clone

    git clone <https://github.com/strongcom/Face-Recognition-using-Raspberry-Pi.git/b0m313/Face-Recognition-using-Raspberry-Pi.git>
    

    Untitled

  5. conda에서 가상 환경 (virtual environments) 생성 및 진입

    conda create -n strongcom-test python=3.8
    
    conda activate strongcom-test
    

    Untitled

    Untitled

  6. conda update

    conda update --all
    
  7. torch, torchvision, torchaudio 설치

    pip install torch==1.9.0+cpu torchvision==0.10.0+cpu torchaudio==0.9.0 -f <https://download.pytorch.org/whl/torch_stable.html>
    

    https://iambeginnerdeveloper.tistory.com/183

  8. jupyter 설치

    pip install jupyter
    
  9. pip upgrade

    python.exe -m pip install --upgrade pip
    
  10. dlib install

    pip install "C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\dlib-19.19.0-cp38-cp38-win_amd64.whl"
    

    Untitled