Skip to content

Commit 0cc2b41

Browse files
committed
add numpy to deps
1 parent 64185d1 commit 0cc2b41

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

make.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ 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 git cmake build-essential python3-pip libpython3-dev python3-setuptools && pip3 install -U spacy && pip3 install -U --upgrade cryptography && sudo python3 -m spacy download en_core_web_sm || exiterr "deps failed (linux), exiting."
73+
sudo apt -y install git cmake build-essential python3-pip libpython3-dev python3-setuptools && pip3 install -U numpy spacy && pip3 install -U --upgrade cryptography && sudo python3 -m spacy download en_core_web_sm || exiterr "deps failed (linux), exiting."
7474
else
7575
exiterr "deps failed (unsupported linux distro ${DISTRO}), exiting."
7676
fi
7777
elif [ "${OS}" == "Darwin" ]; then
78-
brew install cmake python && pip3 install -U spacy && pip3 install -U --upgrade cryptography && python3 -m spacy download en_core_web_sm || exiterr "deps failed (mac), exiting."
78+
brew install cmake python && pip3 install -U numpy spacy && pip3 install -U --upgrade cryptography && python3 -m spacy download en_core_web_sm || exiterr "deps failed (mac), exiting."
7979
else
8080
exiterr "deps failed (unsupported os ${OS}), exiting."
8181
fi

0 commit comments

Comments
 (0)