This repository was archived by the owner on Aug 30, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ if [[ -z "$(which python3.6)" ]]; then
84
84
python_file=" ${download_dir} /Python-3.6.8.tar.xz"
85
85
if [[ ! -f " ${python_file} " ]]; then
86
86
python_url=' https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tar.xz'
87
- curl -sSfL-o " ${python_file} " " ${python_url} "
87
+ curl -sSfL -o " ${python_file} " " ${python_url} "
88
88
fi
89
89
90
90
tar -C " ${temp_dir} " -xf " ${python_file} "
@@ -114,6 +114,7 @@ mkdir -p "${VENV_PATH}"
114
114
# shellcheck source=/dev/null
115
115
source " ${VENV_PATH} /bin/activate"
116
116
" ${PYTHON} " -m pip install wheel
117
+ " ${PYTHON} " -m pip install requests
117
118
118
119
case $CPU_ARCH in
119
120
armv7l|arm64v8)
@@ -144,7 +145,7 @@ case $CPU_ARCH in
144
145
if [[ ! -f " ${snowboy_file} " ]]; then
145
146
snowboy_url=' https://github.com/Kitt-AI/snowboy/archive/v1.3.0.tar.gz'
146
147
echo " Downloading snowboy (${snowboy_url} )"
147
- curl -sSfL-o " ${snowboy_file} " " ${snowboy_url} "
148
+ curl -sSfL -o " ${snowboy_file} " " ${snowboy_url} "
148
149
fi
149
150
150
151
" ${PYTHON} " -m pip install " ${snowboy_file} "
You can’t perform that action at this time.
0 commit comments