Skip to content

Commit 9f523df

Browse files
committed
cleaned up make.sh
1 parent c07ca3a commit 9f523df

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

make.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,11 @@ if [[ "${DEPS}" == "1" ]]; then
7070
if [ "${OS}" == "Linux" ]; then
7171
DISTRO="$(lsb_release -i | awk -F':\t' '{print $2}')"
7272
if [[ "${DISTRO}" == "Ubuntu" ]]; then
73-
#sudo apt -y install python3-pip libpython3-dev python3-setuptools && pip3 install -U numpy cython && pip3 install -U spacy && python3 -m spacy download en_core_web_sm || exiterr "deps failed (linux), exiting."
7473
pip3 install -U spacy && python3 -m spacy download en_core_web_sm || exiterr "deps failed (linux), exiting."
7574
else
7675
exiterr "deps failed (unsupported linux distro ${DISTRO}), exiting."
7776
fi
7877
elif [ "${OS}" == "Darwin" ]; then
79-
#pip3 install -U numpy spacy && python3 -m spacy download en_core_web_sm || exiterr "deps failed (mac), exiting."
8078
pip3 install -U spacy && python3 -m spacy download en_core_web_sm || exiterr "deps failed (mac), exiting."
8179
else
8280
exiterr "deps failed (unsupported os ${OS}), exiting."

0 commit comments

Comments
 (0)