Skip to content

Commit a6103cf

Browse files
committed
Improvement of the DOCS FR
1 parent 2c407c1 commit a6103cf

File tree

1 file changed

+29
-3
lines changed

1 file changed

+29
-3
lines changed

flask-redis/README.md

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,37 @@ If homebrew is not installed, then go to https://brew.sh/ and install it.
2121

2222
```bash
2323
git clone https://github.com/keploy/samples-typescript && cd samples-typescript/flask-redis
24-
25-
# Install the dependencies
26-
pip3 install -r requirements.txt
2724
```
2825

26+
1. Create a Virtual Environment:
27+
28+
```bash
29+
python -m venv venv
30+
```
31+
2. Activating the Virtual Environment
32+
33+
On Windows:
34+
35+
```bash
36+
venv\Scripts\activate
37+
```
38+
39+
On macOS and Linux:
40+
41+
```bash
42+
source venv/bin/activate
43+
```
44+
3. Install the required Python packages:
45+
46+
```bash
47+
pip install -r requirements.txt
48+
```
49+
4. To exit your Virtual Environment:
50+
51+
```bash
52+
deactivate
53+
```
54+
2955
# Installing Keploy
3056

3157
Let's get started by setting up the Keploy alias with this command:

0 commit comments

Comments
 (0)