File tree Expand file tree Collapse file tree 1 file changed +29
-3
lines changed Expand file tree Collapse file tree 1 file changed +29
-3
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,37 @@ If homebrew is not installed, then go to https://brew.sh/ and install it.
2121
2222``` bash
2323git 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\S cripts\a ctivate
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
3157Let' s get started by setting up the Keploy alias with this command:
You can’t perform that action at this time.
0 commit comments