Skip to content
Snippets Groups Projects
Commit b6018ae4 authored by Bob Bot Account's avatar Bob Bot Account
Browse files

Fix some aspects of #27

parent 4fd6f472
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,11 @@ PYTHON_VERSION=$3 ...@@ -15,7 +15,11 @@ PYTHON_VERSION=$3
CONDA=${BASEDIR}/bin/conda CONDA=${BASEDIR}/bin/conda
if [ -d ${BASEDIR}/envs/${NAME} ]; then if [ -d ${BASEDIR}/envs/${NAME} ]; then
${CONDA} remove -n ${NAME} --all ${CONDA} remove -n ${NAME} --all --yes
if [ -d ${BASEDIR}/envs/${NAME} ]; then
echo "[>>] Environment ${NAME} survived remove, brute force removing..."
rm -rf ${BASEDIR}/envs/${NAME}
fi
fi fi
# For a complete list of dependencies, please read: # For a complete list of dependencies, please read:
...@@ -23,7 +27,6 @@ fi ...@@ -23,7 +27,6 @@ fi
echo "[>>] Creating environment ${NAME} for python ${PYTHON_VERSION} with bob dependencies..." echo "[>>] Creating environment ${NAME} for python ${PYTHON_VERSION} with bob dependencies..."
${CONDA} create --yes -n ${NAME} --override-channels -c conda-forge -c defaults python=$PYTHON_VERSION \ ${CONDA} create --yes -n ${NAME} --override-channels -c conda-forge -c defaults python=$PYTHON_VERSION \
boost \ boost \
caffe \
cmake \ cmake \
coverage \ coverage \
cython \ cython \
...@@ -59,6 +62,7 @@ ${CONDA} create --yes -n ${NAME} --override-channels -c conda-forge -c defaults ...@@ -59,6 +62,7 @@ ${CONDA} create --yes -n ${NAME} --override-channels -c conda-forge -c defaults
tensorflow \ tensorflow \
virtualenv \ virtualenv \
vlfeat vlfeat
#caffe
echo "[>>] Bye!" echo "[>>] Bye!"
exit 0 exit 0
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