We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2934545 commit 1dc80c3Copy full SHA for 1dc80c3
1 file changed
README.md
@@ -24,18 +24,22 @@
24
25
## How to Run:
26
27
-### Install Requirements
28
-
29
-Using Python directly:
+### Setup Virtual environment
30
+#### Lunix
31
```bash
+python -m venv venv
32
+source venv/bin/activate
33
pip install -r requirements.txt
34
```
-Or run:
35
-- `install_requirements.bat`
36
37
38
- <br>
+#### Windows PowerShell
+```bash
+python.exe -m pip install --upgrade pip
+py -3.11 -m venv venv311
39
+venv311\Scripts\activate
40
+pip install -r requirements.txt
41
+```
42
+<br>
43
44
### Run main.py
45
@@ -55,13 +59,7 @@ or
55
59
Unix-like systems (Linux/macOS):
56
60
- `.\run.sh`
57
61
58
-## Requirements:
62
-```bash
63
64
-```
65
66
<br>
67
<div align="center">
0 commit comments