instructions update
Browse files
README.md
CHANGED
@@ -20,11 +20,24 @@ Todo
|
|
20 |
## Installation
|
21 |
|
22 |
```bash
|
|
|
23 |
git clone https://github.com/tikendraw/open-o1.git
|
24 |
|
|
|
25 |
cd open-o1
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
streamlit run app.py
|
|
|
28 |
```
|
29 |
|
30 |
HAVE FUN.
|
|
|
20 |
## Installation
|
21 |
|
22 |
```bash
|
23 |
+
#clone the repo
|
24 |
git clone https://github.com/tikendraw/open-o1.git
|
25 |
|
26 |
+
# goto folder
|
27 |
cd open-o1
|
28 |
|
29 |
+
# make a virtual env
|
30 |
+
python -m venv .venv
|
31 |
+
|
32 |
+
# activate the virtual env
|
33 |
+
source .venv/bin/activate
|
34 |
+
|
35 |
+
# install requirements
|
36 |
+
pip install -e .
|
37 |
+
|
38 |
+
#finally run the server
|
39 |
streamlit run app.py
|
40 |
+
|
41 |
```
|
42 |
|
43 |
HAVE FUN.
|