Skip to content
Snippets Groups Projects
Commit 0939ac01 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Download specific python versioned yml files for each environment

parent 38a0d01e
No related branches found
No related tags found
No related merge requests found
...@@ -2,3 +2,4 @@ ...@@ -2,3 +2,4 @@
*.swp *.swp
*.swo *.swo
*.whl *.whl
install/bob-devel-py*.yml
name: bob-devel
channels:
- https://www.idiap.ch/software/bob/conda
- defaults
dependencies:
- python=2.7
- cython
- dask
- hdf5
- jpeg
- libpng
- libtiff
- matplotlib
- nose
- numexpr
- numpy
- pillow
- pip
- psutil
- scikit-image
- scikit-learn
- scipy
- sphinx
- sqlalchemy
- anaconda=4.2.0 # [only linux]
- anaconda=4.3.0 # [only osx]
- boost=1.61
- caffe # [only linux]
- cmake
- coverage
- cyvlfeat=0.4.5
- docopt
- ffmpeg=2.8.10
- gcc=4.8.5 # [only linux]
- libgcc=4.8.5 # [only linux]
- giflib=5.1.4
- ipdb=0.10.2
- ipython
- libblitz=0.10
- libmatio=1.5
- libsvm=3.21
- menpo=0.7.7
- menpofit=0.4.1
- menpowidgets=0.2.1p3
- mne=0.13.1
- openblas=0.2.19
- opencv=3
- pkgtools=0.7.3
- pkg-config
- pyedflib=0.1.6
- schema=0.6.5
- sox=14.4.2
- sphinx_rtd_theme
- toolchain=2.3.1
- vlfeat=0.9.20
- zc.buildout=2.9.2
- pip:
- tensorflow==1.0.1
...@@ -12,8 +12,9 @@ fi ...@@ -12,8 +12,9 @@ fi
BASEDIR=$1 BASEDIR=$1
NAME=$2 NAME=$2
PYTHON_VERSION=$3 PYTHON_VERSION=$3
PYVER=`echo $PYTHON_VERSION | sed -e 's/\.//'`
CONDA=${BASEDIR}/bin/conda CONDA=${BASEDIR}/bin/conda
YML=bob-devel.yml YML=bob-devel-py${PYVER}.yml
if [ -d ${BASEDIR}/envs/${NAME} ]; then if [ -d ${BASEDIR}/envs/${NAME} ]; then
${CONDA} remove -n ${NAME} --all --yes ${CONDA} remove -n ${NAME} --all --yes
......
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