Skip to content

Commit

Permalink
Changes in install-deps to allow openSUSE Leap 42.2 users to install …
Browse files Browse the repository at this point in the history
…torch
  • Loading branch information
Sayak Biswas committed Nov 19, 2016
1 parent c440b66 commit dc69f14
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions install-deps
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,15 @@ elif [[ "$(uname)" == 'Linux' ]]; then
echo "Some portion of the update failed"
fi
sudo zypper install -y -t pattern devel_basis
sudo zypper install -y gcc curl cmake readline-devel IPython git-core \
libqt4 libjpeg8-devel libpng15-compat-devel imagemagick unzip \
gnuplot gcc-fortran libzmq3
if [[ $opensuse_major_version == '42.2' ]]; then
sudo zypper install -y gcc curl cmake readline-devel IPython git-core \
libqt4 libjpeg62-devel libpng16-compat-devel ImageMagick unzip \
gnuplot gcc-fortran libzmq5
else
sudo zypper install -y gcc curl cmake readline-devel IPython git-core \
libqt4 libjpeg8-devel libpng15-compat-devel imagemagick unzip \
gnuplot gcc-fortran libzmq3
fi

elif [[ $distribution == 'elementary' ]]; then
declare -a target_pkgs
Expand Down

0 comments on commit dc69f14

Please sign in to comment.