Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2018-02-01 12:44:55 +0300
committerRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2018-02-01 12:44:55 +0300
commit05dafbd1dc28a4935ae2e6be738d013441a0d896 (patch)
tree0582c3876d560dd28245e9983803eb4da450c7ca /Makefile
parent9505efeefc89f31393b538a22b01652093c4f863 (diff)
Add pyyaml
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 711c1d3..98c748e 100644
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,8 @@ GIT_NEMATUS=http://github.com/EdinburghNLP/nematus.git
BRANCH=master
USE_CUDNN=ON
+PIP_PACKAGES=websocket-client pyyaml
+
.PHONY: tools/marian install tools models data run
.SECONDARY:
@@ -24,7 +26,7 @@ tools:
git -C $@/moses-scripts pull || git clone $(GIT_MOSES_SCRIPTS) $@/moses-scripts
git -C $@/subword-nmt pull || git clone $(GIT_SUBWORD_NMT) $@/subword-nmt
git -C $@/nematus pull || git clone $(GIT_NEMATUS) $@/nematus
- pip3 install --user websocket-client
+ pip3 install --user $(PIP_PACKAGES)
tools/marian:
git -C $@ pull || git clone $(GIT_MARIAN_DEV) -b $(BRANCH) $@