romybeaute commited on
Commit
c810e2f
·
1 Parent(s): c06eccb
Files changed (1) hide show
  1. README.md +8 -1
README.md CHANGED
@@ -40,10 +40,17 @@ Visit [huggingface.co/spaces/romybeaute/MOSAICapp](https://huggingface.co/spaces
40
  ### Local installation
41
 
42
  ```bash
43
- git clone https://github.com/romybeaute/MOSAICapp.git
44
  cd MOSAICapp
 
 
45
  pip install -r requirements.txt
 
 
 
46
  python -c "import nltk; nltk.download('punkt')"
 
 
47
  streamlit run app.py
48
  ```
49
 
 
40
  ### Local installation
41
 
42
  ```bash
43
+ git clone [https://github.com/romybeaute/MOSAICapp.git](https://github.com/romybeaute/MOSAICapp.git)
44
  cd MOSAICapp
45
+
46
+ # Install dependencies and the package in editable mode
47
  pip install -r requirements.txt
48
+ pip install -e .
49
+
50
+ # Download NLTK data (required for segmentation)
51
  python -c "import nltk; nltk.download('punkt')"
52
+
53
+ # Run the app
54
  streamlit run app.py
55
  ```
56