langdonh commited on
Commit
5959a8e
1 Parent(s): e45a665
Files changed (1) hide show
  1. README.md +9 -6
README.md CHANGED
@@ -16,17 +16,20 @@ For development, try working with pipenv:
16
  `git clone https://huggingface.co/spaces/langdonholmes/piilo`
17
 
18
  2. Install dependencies from Pipfile
19
- Install pipenv, if you do not have it.
20
- `pip install --user pipenv`
21
 
22
- Use pipenv to install from the Pipfile
23
- `pipenv install`
24
 
25
  3. Install the finetuned transformer model
26
- `pipenv install https://huggingface.co/langdonholmes/en_student_name_detector/resolve/main/en_student_name_detector-any-py3-none-any.whl`
 
 
 
27
 
28
  4. Run streamlit app
29
- `streamlit run .\app.py`
30
 
31
  TODO:
32
  Create a command line version using Typer in this same repository.
 
16
  `git clone https://huggingface.co/spaces/langdonholmes/piilo`
17
 
18
  2. Install dependencies from Pipfile
19
+ - Install pipenv, if you do not have it.
20
+ - `pip install --user pipenv`
21
 
22
+ - Use pipenv to install from the Pipfile
23
+ - `pipenv install`
24
 
25
  3. Install the finetuned transformer model
26
+
27
+ ```
28
+ pipenv install https://huggingface.co/langdonholmes/en_student_name_detector/resolve/main/en_student_name_detector-any-py3-none-any.whl
29
+ ```
30
 
31
  4. Run streamlit app
32
+ - `streamlit run .\app.py`
33
 
34
  TODO:
35
  Create a command line version using Typer in this same repository.