From be9b0cf3f7d6d4476088f68fbdc96ea656afb192 Mon Sep 17 00:00:00 2001 From: Shivang Keshri Date: Thu, 9 Jan 2025 21:24:13 +0200 Subject: [PATCH] Updated env for windows. --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 85153ec..9b92983 100644 --- a/README.md +++ b/README.md @@ -59,9 +59,13 @@ The target language is English(en). * The following commands were used to install dependencies for the project: ```bash $ git clone https://github.com/RedHenLab/Neural-Machine-Translation.git - $ virtualenv myenv - $ source myenv/bin/activate - $ pip install -r Neural-Machine-Translation/requirements.txt +$ virtualenv myenv +# Linux/MacOS: Activate the virtual environment +$ source myenv/bin/activate +# Windows: Activate the virtual environment +$ myenv\Scripts\activate +$ pip install -r Neural-Machine-Translation/requirements.txt + ``` * **Note** that the virtual environment(myenv) created using virtualenv command mentioned above, should be of **Python2** .