Add environment variable handling to Windows installation instructions
Change-Id: Iae3de788e63e7a386dae1dcb20f7825525427df3
diff --git a/Readme.md b/Readme.md
index 2ef1c9d..7af894c 100644
--- a/Readme.md
+++ b/Readme.md
@@ -23,12 +23,18 @@
#### Fedora / CentOS / RHEL
sudo yum install -y R R-devel libcurl-devel openssl-devel libxml2-devel libsodium-devel python3-pandas
```
+#### 2. Windows only: Point environment variables to your R installation, e.g.:
+```
+set R_HOME="C:Program Files\R\R-4.0.2"
+set R_USER=%R_HOME%
+set PATH=%R_HOME%\bin;%R_HOME%\bin\x64;%PATH%
+```
-#### 2. Install the R package
+#### 3. Install the R package
```
Rscript -e "install.packages('RKorAPClient')"
```
-#### 3. Install the Python package
+#### 4. Install the Python package
```
python3 -m pip install git+https://github.com/KorAP/PythonKorAPClient
```