Skip to content
Snippets Groups Projects

Update to anaconda 4.3.0, remove virtualenv

Merged Amir MOHAMMADI requested to merge staging into master
+ 34
23
@@ -30,67 +30,78 @@ fi
@@ -30,67 +30,78 @@ fi
if [ "$(uname)" == "Linux" ]; then
if [ "$(uname)" == "Linux" ]; then
TENSORFLOW=tensorflow
TENSORFLOW=tensorflow
 
MYGCCPACKAGE="gcc=4.8.5"
 
MYLIBGCCPKG="libgcc=4.8.5"
else
else
TENSORFLOW=
TENSORFLOW=
 
MYGCCPACKAGE=
 
MYLIBGCCPKG=
fi
fi
# For a complete list of dependencies, please read:
# For a complete list of dependencies, please read:
# https://gitlab.idiap.ch/bob/bob/wikis/Dependencies
# https://gitlab.idiap.ch/bob/bob/wikis/Dependencies
 
 
# the dependencies that come before anaconda are being pulled and pinned using
 
# anaconda. When you update to a new version of anaconda make sure the
 
# dependencies are still in the newer version of anaconda. If they are not there
 
# anymore, you need to pin them if we still need them. Otherwise, remove them
 
# from here too.
 
echo "[>>] Creating environment ${NAME} for python ${PYTHON_VERSION} with bob dependencies..."
echo "[>>] Creating environment ${NAME} for python ${PYTHON_VERSION} with bob dependencies..."
${CONDA} create --copy --yes -n ${NAME} \
${CONDA} create --copy --yes -n ${NAME} \
--override-channels \
--override-channels \
-c http://www.idiap.ch/software/bob/conda \
-c http://www.idiap.ch/software/bob/conda \
-c defaults \
-c defaults \
python=$PYTHON_VERSION \
python=$PYTHON_VERSION \
anaconda=4.2.0 \
cython \
 
dask \
 
hdf5 \
 
jpeg \
 
libpng \
 
libtiff \
 
matplotlib \
 
nose \
 
numexpr \
 
numpy \
 
pillow \
 
pip \
 
psutil \
 
scikit-image \
 
scikit-learn \
 
scipy \
 
sphinx \
 
sqlalchemy \
 
anaconda=4.3.0 \
boost=1.61 \
boost=1.61 \
${CAFFE} \
${CAFFE} \
cmake \
cmake \
coverage \
coverage \
cython=0.24.1 \
cyvlfeat=0.4.5 \
cyvlfeat=0.4.5 \
dask=0.11.0 \
docopt \
docopt \
ffmpeg=2.8.10 \
ffmpeg=2.8.10 \
gcc=4.8.5 \
${MYGCCPACKAGE} \
libgcc=4.8.5 \
${MYLIBGCCPKG} \
giflib=5.1.4 \
giflib=5.1.4 \
hdf5=1.8.17 \
ipdb=0.10.2 \
ipdb=0.10.2 \
ipython \
ipython \
jpeg=8d \
libblitz=0.10 \
libblitz=0.10 \
libmatio=1.5 \
libmatio=1.5 \
libpng=1.6.22 \
libsvm=3.21 \
libsvm=3.21 \
libtiff=4.0.6 \
matplotlib=1.5.3 \
menpo=0.7.7 \
menpo=0.7.7 \
menpofit=0.4.1 \
menpofit=0.4.1 \
menpowidgets=0.2.1p3 \
menpowidgets=0.2.1p3 \
mne=0.13.1 \
mne=0.13.1 \
nose=1.3.7 \
olefile=0.44 \
numexpr=2.6.1 \
numpy=1.11.1 \
openblas=0.2.19 \
openblas=0.2.19 \
opencv=3 \
opencv=3 \
pillow=3.3.1 \
pip=8.1.2 \
pkgtools=0.7.3 \
pkgtools=0.7.3 \
pkg-config \
pkg-config \
psutil=4.3.1 \
pyedflib=0.1.6 \
pyedflib=0.1.6 \
schema=0.6.5 \
schema=0.6.5 \
scikit-image=0.12.3 \
scikit-learn=0.17.1 \
scipy=0.18.1 \
sox=14.4.2 \
sox=14.4.2 \
sphinx=1.4.6 \
sphinx_rtd_theme \
sphinx_rtd_theme \
sqlalchemy=1.0.13 \
${TENSORFLOW} \
${TENSORFLOW} \
toolchain=2.1.0 \
toolchain=2.3.0 \
virtualenv \
vlfeat=0.9.20
vlfeat=0.9.20
echo "[>>] Bye!"
echo "[>>] Bye!"
Loading