File: install_deb_dependencies.sh

package info (click to toggle)
nipype 1.9.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,260 kB
  • sloc: python: 156,463; javascript: 9,246; tcl: 608; sh: 485; makefile: 168
file content (23 lines) | stat: -rwxr-xr-x 380 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

echo "Installing NeuroDebian dependencies"

set -eu

echo "INSTALL_DEB_DEPENDENCIES = $INSTALL_DEB_DEPENDENCIES"

DEPS=(
  fsl
  # afni
  # elastix
  fsl-atlases
  xvfb
  fusefat
  graphviz
)

if $INSTALL_DEB_DEPENDENCIES; then
    bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh)
    sudo apt update
    sudo apt install -y -qq ${DEPS[@]}
fi