Skip to content
Snippets Groups Projects
Commit 05f0d3a3 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Merge branch 'add_caffe' into 'master'

Update from-scratch.sh to install caffe on Python 2.7 and Linux

Fixes #27 

See merge request !25
parents f565a826 f35ebf70
No related branches found
No related tags found
1 merge request!25Update from-scratch.sh to install caffe on Python 2.7 and Linux
......@@ -62,7 +62,10 @@ ${CONDA} create --yes -n ${NAME} --override-channels -c conda-forge -c defaults
tensorflow \
virtualenv \
vlfeat
#caffe
if [ "$(uname)" == "Linux" ] && [ ${PYTHON_VERSION} == "2.7" ]; then
${CONDA} install --yes -n ${NAME} --override-channels -c conda-forge -c defaults caffe
fi
echo "[>>] Pip-installing extra dependencies in environment ${NAME} for ${PYTHON_VERSION}..."
source ${BASEDIR}/bin/activate ${NAME}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment