diff --git a/README.md b/README.md
index a4495bb..bae49a2 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,8 @@ python# CDC - Backend
2. Create a Virtual Environment in the [CDC_Backend](./) folder with this command below
`python -m venv venv`
3. Activate the environment with this command
- `.\venv\Scripts\activate`
+ `.\venv\Scripts\activate` (for WINDOWS)
+ `source ./venv/bin/activate` (for LINUX)
4. Install the dependencies
`pip install -r requirements.txt `
5. Ensure that you have the PostgreSQL installed on your machine and is running on PORT **5432**
@@ -17,7 +18,8 @@ python# CDC - Backend
### Running the Application
1. Activate the environment with this command.
- `.\venv\Scripts\activate`
+ `.\venv\Scripts\activate` (for WINDOWS)
+ `source ./venv/bin/activate` (for LINUX)
2. Start the application by running this command (_Run the command where [manage.py](./CDC_Backend/manage.py) is
located_)
` python manage.py runserver`