From 8510a407bdd65e86ccbacfe731a2b3d48b4db939 Mon Sep 17 00:00:00 2001 From: Jiwoon Lee Date: Wed, 6 Jul 2022 17:05:34 +0900 Subject: [PATCH 1/2] Fix fortran compiler dependency --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 4d07fd1..16bd29f 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,21 @@ Nine classical rPPG methods, namely *ICA*, *PCA*, *GREEN*, *CHROM*, *POS*, *SS The quickest way to get started is to install the [miniconda](http://conda.pydata.org/miniconda.html) distribution, a lightweight minimal installation of Anaconda Python. +First of all, install fortran compiler following sections: +**Ubuntu** +```bash +sudo apt update +sudo apt install gfortran +``` + +**Windows** +1. Install [MinGW](https://www.mingw-w64.org/) +2. After install MinGW, then open MinGW Installation Manager. +3. Select `mingw32-gcc-fortran` in MinGW Installation Manager. +4. Installation - Apply Changes +5. Add `C:\MinGW\bin`(This is a default location) to PATH environment variable + + Once installed, create a new `conda` environment and automatically fetch all the dependencies based on your architecture (with or without GPU), using one of the following commands: **CPU-only version** From e7240430b89c1cf6f1db75adfac4a24a993f3f05 Mon Sep 17 00:00:00 2001 From: Jiwoon Lee Date: Tue, 12 Jul 2022 15:19:42 +0900 Subject: [PATCH 2/2] Update README.md Changed MinGW download link from MinGW Official site to Sourceforge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 16bd29f..ed32d10 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ sudo apt install gfortran ``` **Windows** -1. Install [MinGW](https://www.mingw-w64.org/) +1. Install [MinGW](https://sourceforge.net/projects/mingw/) 2. After install MinGW, then open MinGW Installation Manager. 3. Select `mingw32-gcc-fortran` in MinGW Installation Manager. 4. Installation - Apply Changes