Commit c379bc2b authored by Belhorn, Matt's avatar Belhorn, Matt
Browse files

Add numpy and accelerate to venv at creation time.

parent a2affde0
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ module unload PrgEnv-pgi
module load PrgEnv-gnu

# Load all packages that provide dependencies. Add anything else that is missing!
module load cray-hdf5-parallel
module load cray-hdf5-parallel cudatoolkit


# Deploy Anaconda
@@ -113,8 +113,11 @@ if [ ! -d "../envs/myenv" ]; then
  module unload craype-interlagos
  module load craype-istanbul

  conda update conda
  conda install accelerate

  # Create the venv
  conda create -n $VENV_NAME python=2.7
  conda create -n $VENV_NAME python=2.7 numpy accelerate

  # Activate it
  source activate $VENV_NAME