Skip to content

Commit 96596c7

Browse files
committed
including instructions for installing ace the proper way
1 parent 98b16d5 commit 96596c7

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

install_ace.sh

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/bash
2+
3+
# Following instructions from: https://github.com/delph-in/docs/wiki/AceInstall
4+
# Choose ready-to-run ACE binary download from https://sweaglesw.org/linguistics/ace/
5+
TAR_URL="https://sweaglesw.org/linguistics/ace/download/ace-0.9.34-x86-64.tar.gz"
6+
sudo apt install curl
7+
curl -L $TAR_URL -o /tmp/file.tar.gz
8+
mkdir -p /tmp/extracted
9+
tar -xzvf /tmp/file.tar.gz -C /tmp/extracted
10+
chmod +x /tmp/extracted/ace-0.9.34/ace
11+
# destination path depends on where your bin is
12+
sudo mv /tmp/extracted/ace-0.9.34/ace /usr/local/bin/ace
13+
14+
exit_status=$?
15+
16+
if [ $exit_status -ne 0 ]; then
17+
echo "Error occurred: Command failed with exit status $exit_status"
18+
exit 1
19+
else
20+
echo "Successfully installed ace"
21+
fi

requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
pydelphin==1.4.0
2+
3+
# Run ./install_ace.sh

web/matrixdef

+1-1
Original file line numberDiff line numberDiff line change
@@ -1384,7 +1384,7 @@ Radio comp-neg-head-infl-comp-neg "neg selected by" "Is neg selected by" "<br />
13841384
. aux "aux" "" "a (sub-)class of aux-verbs" "neg_comp()"
13851385
. v "v" "" "any (finite) verb" "neg_comp()"
13861386

1387-
Radio comp-neg-order-infl-head "neg ordered" "How is neg ordered with resepct
1387+
Radio comp-neg-order-infl-head "neg ordered" "How is neg ordered with respect
13881388
to other COMPS?" "<br />(NB: After other complements order is only available
13891389
for non-argument composing auxiliaries.)<br />"
13901390
. before "before" "" "before "

0 commit comments

Comments
 (0)