File tree Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,20 @@ See [Streamlit's Getting Started guide](https://docs.streamlit.io/getting_starte
19
19
20
20
## Running CHIME Locally
21
21
22
+
23
+ ### With ` venv `
24
+
25
+ ``` bash
26
+ python3 -m venv ~ .venv
27
+ . ~ .venv/bin/activate
28
+ pip install -e .
29
+ ```
30
+
22
31
### With ` pipenv `
23
32
24
33
``` bash
25
34
pipenv shell
26
35
pipenv sync --dev
27
- PARAMETERS=./defaults/webapp.cfg streamlit run st_app.py
28
36
```
29
37
30
38
### With ` conda `
@@ -33,7 +41,24 @@ PARAMETERS=./defaults/webapp.cfg streamlit run st_app.py
33
41
conda env create -f environment.yml
34
42
source activate chime
35
43
pip install streamlit
36
- PARAMETERS=./defaults/webapp.cfg streamlit run st_app.py
44
+ ```
45
+
46
+ ## Run the Streamlit Web App
47
+
48
+ ``` bash
49
+ PARAMETERS=-./defaults/webapp.cfg streamlit run st_app.py
50
+ ```
51
+
52
+ ## Run the Command Line Interface
53
+
54
+ ``` bash
55
+ PARAMETERS=./defaults/cli.cfg penn_chime
56
+ ```
57
+
58
+ ## Help with the Command Line Interface
59
+
60
+ ``` bash
61
+ penn_chime --help
37
62
```
38
63
39
64
### Choosing a Different Set of Parameters
You can’t perform that action at this time.
0 commit comments