Spaces:
Running
Running
guangyusong
commited on
Commit
·
911bee9
1
Parent(s):
3fd1d47
Updated bash script to install packages from acl-anthology
Browse files- requirements.txt +3 -22
- scripts/get_aclanthology.sh +2 -0
requirements.txt
CHANGED
@@ -1,22 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
citeproc-py-styles==0.1.3
|
5 |
-
feedparser==6.0.10
|
6 |
-
idna==3.4
|
7 |
-
langcodes==3.3.0
|
8 |
-
language-data==1.1
|
9 |
-
lxml==4.9.2
|
10 |
-
marisa-trie==0.7.8
|
11 |
-
python-slugify==7.0.0
|
12 |
-
pytz==2022.7.1
|
13 |
-
PyYAML==6.0
|
14 |
-
requests==2.28.2
|
15 |
-
sgmllib3k==1.0.0
|
16 |
-
six==1.16.0
|
17 |
-
stop-words==2018.7.23
|
18 |
-
TexSoup==0.3.1
|
19 |
-
text-unidecode==1.3
|
20 |
-
tqdm==4.64.1
|
21 |
-
unicode==2.9
|
22 |
-
urllib3==1.26.14
|
|
|
1 |
+
tqdm>=4.64.1
|
2 |
+
requests>=2.28.1
|
3 |
+
feedparser>=6.0.10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
scripts/get_aclanthology.sh
CHANGED
@@ -9,6 +9,8 @@ else
|
|
9 |
fi
|
10 |
cd acl-anthology/bin
|
11 |
|
|
|
|
|
12 |
python -c '
|
13 |
import json
|
14 |
from anthology import Anthology
|
|
|
9 |
fi
|
10 |
cd acl-anthology/bin
|
11 |
|
12 |
+
pip install -r https://raw.githubusercontent.com/acl-org/acl-anthology/master/bin/requirements.txt
|
13 |
+
|
14 |
python -c '
|
15 |
import json
|
16 |
from anthology import Anthology
|