Skip to content

Commit

Permalink
draft of debian install script
Browse files Browse the repository at this point in the history
  • Loading branch information
greole committed Dec 8, 2015
1 parent 2446468 commit 1d42586
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions scripts/install-debian.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
packages=(
python-matplotlib,
python-numpy
ipython-notebook
)

for package in "${packages[@]}"
do
sudo apt-get install -y $package
done

inst () {
cd .. && python setup.py install --user
}

cur_dir=$( basename "$1" )
if [ cur_dir == "scripts" ]; then
inst
fi

0 comments on commit 1d42586

Please sign in to comment.