Nightwing11 commited on
Commit
4f3c3fe
·
1 Parent(s): 852dd8d

automated setup script

Browse files
Files changed (1) hide show
  1. setup.sh +10 -0
setup.sh ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ # Install Python dependencies
2
+ pip install -r requirements.txt
3
+
4
+ # Download spaCy model
5
+ python -m spacy download en_core_web_sm
6
+
7
+ # Install Coreferee for English
8
+ python -m coreferee install en
9
+
10
+ echo "Setup completed successfully!"