File tree Expand file tree Collapse file tree 1 file changed +34
-3
lines changed Expand file tree Collapse file tree 1 file changed +34
-3
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,40 @@ alias keploy='sudo docker run --pull always --name keploy-v2 -p 16789:16789 --pr
3434
3535Now head to the folder of the application and run
3636
37- ```
38- pip3 install -r requirements.txt
39- ```
37+ 1 . Navigate your project directory:
38+
39+ ``` bash
40+ cd sample-python/sanic-mongo
41+ ```
42+
43+ 2. Create a Virtual Environment:
44+
45+ ` ` ` bash
46+ python -m venv venv
47+ ` ` `
48+ 3. Activating the Virtual Environment
49+
50+ On Windows:
51+
52+ ` ` ` bash
53+ venv\S cripts\a ctivate
54+ ` ` `
55+
56+ On macOS and Linux:
57+
58+ ` ` ` bash
59+ source venv/bin/activate
60+ ` ` `
61+ 4. Install the required Python packages:
62+
63+ ` ` ` bash
64+ pip install -r requirements.txt
65+ ` ` `
66+ 5. To exit your Virtual Environment:
67+
68+ ` ` ` bash
69+ deactivate
70+ ` ` `
4071
4172# ## Lights, Camera, Record! 🎥
4273
You can’t perform that action at this time.
0 commit comments