Skip to content

Commit 8e3b515

Browse files
committed
single apt-get command in install-ubuntu-packages
1 parent cbefdb9 commit 8e3b515

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

bin/install-ubuntu-packages.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# required to compile fidimag
2-
apt-get install python-pip python-numpy python-dev python-scipy cmake
3-
# required for tests and running it
4-
apt-get install python-pytest python-pyvtk ipython python-matplotlib
2+
deps_compilation="python-pip python-numpy python-dev python-scipy cmake"
3+
4+
# required for tests and running fidimag
5+
deps_live="python-pytest python-pyvtk ipython python-matplotlib"
6+
7+
apt-get install $deps_compilation $deps_live

0 commit comments

Comments
 (0)