Skip to content

Commit

Permalink
change version
Browse files Browse the repository at this point in the history
  • Loading branch information
vcepaitis committed Aug 26, 2019
1 parent 2ca69f5 commit 973f850
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion Env/environment_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: tf_cpu
channels:
- conda-forge
dependencies:
- root==6.16
- python==2.7.15
- root==6.18.00
- pyyaml==3.12
- h5py==2.7.1
- scipy==1.0.0
Expand Down
3 changes: 2 additions & 1 deletion Env/environment_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: tf_gpu
channels:
- conda-forge
dependencies:
- root==6.16
- python==2.7.15
- root==6.18.00
- pyyaml==3.12
- h5py==2.7.1
- scipy==1.0.0
Expand Down
6 changes: 3 additions & 3 deletions Env/setupEnvCPU.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ function run_setup()
return 1
fi

wget -P $INSTALL_ABSDIR https://repo.continuum.io/miniconda/Miniconda2-4.3.31-Linux-x86_64.sh &>> $LOGFILE || return 1
bash $INSTALL_ABSDIR/Miniconda2-4.3.31-Linux-x86_64.sh -b -s -p $INSTALL_ABSDIR/miniconda &>> $LOGFILE || return 1
wget -P $INSTALL_ABSDIR https://repo.continuum.io/miniconda/Miniconda2-4.7.10-Linux-x86_64.sh &>> $LOGFILE || return 1
bash $INSTALL_ABSDIR/Miniconda2-4.7.10-Linux-x86_64.sh -b -s -p $INSTALL_ABSDIR/miniconda &>> $LOGFILE || return 1

CONDA_BIN=$INSTALL_ABSDIR/miniconda/bin
export PATH=$CONDA_BIN:$PATH
Expand All @@ -59,7 +59,7 @@ function run_setup()

echo "Create environment for CPU"

conda env create -f $SCRIPT_DIR/environment_cpu.yml -q python=2.7 &>> $LOGFILE || return 1
conda env create -f $SCRIPT_DIR/environment_cpu.yml -q &>> $LOGFILE || return 1
source activate tf_cpu
conda list
source deactivate &>> $LOGFILE || return 1
Expand Down
4 changes: 2 additions & 2 deletions Env/setupEnvFull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function run_setup()

echo "Create environment for CPU"

conda env create -f $SCRIPT_DIR/environment_cpu.yml -q python=2.7 &>> $LOGFILE || return 1
conda env create -f $SCRIPT_DIR/environment_cpu.yml -q &>> $LOGFILE || return 1
source activate tf_cpu
conda list
source deactivate &>> $LOGFILE || return 1
Expand All @@ -75,7 +75,7 @@ function run_setup()

echo "Create environment for GPU"

conda env create -f $SCRIPT_DIR/environment_gpu.yml -q python=2.7 &>> $LOGFILE || return 1
conda env create -f $SCRIPT_DIR/environment_gpu.yml -q &>> $LOGFILE || return 1
source activate tf_gpu
conda list
source deactivate &>> $LOGFILE || return 1
Expand Down

0 comments on commit 973f850

Please sign in to comment.