Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/distro.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2017-05-28 20:52:48 +0300
committerGitHub <noreply@github.com>2017-05-28 20:52:48 +0300
commit54a378af2b2eef0a2e1e1a0396b26f5973d7c36f (patch)
treedfdf775654a505a72675dc69ad7aa32c679782b1
parent25a3a63aa93f6134323f409946686889f9e7b706 (diff)
parente5012b3909a8efdab9491da3951039f47b7a7ae6 (diff)
Merge pull request #226 from notastudio/patch-1
Update install-deps for Fedora 25.
-rwxr-xr-xinstall-deps4
1 files changed, 2 insertions, 2 deletions
diff --git a/install-deps b/install-deps
index 55a94fb..4cc9663 100755
--- a/install-deps
+++ b/install-deps
@@ -322,7 +322,7 @@ elif [[ "$(uname)" == 'Linux' ]]; then
sox-devel sox qt-devel qtwebkit-devel \
python-ipython czmq czmq-devel
install_openblas || true
- elif [[ $fedora_major_version == '24' ]]; then
+ elif [[ $fedora_major_version == '24' || $fedora_major_version == '25' ]]; then
sudo dnf install -y make cmake curl readline-devel ncurses-devel \
gcc-c++ gcc-gfortran git gnuplot unzip \
libjpeg-turbo-devel libpng-devel \
@@ -331,7 +331,7 @@ elif [[ "$(uname)" == 'Linux' ]]; then
python-ipython czmq czmq-devel
install_openblas || true
else
- echo "Only Fedora 20-24 are supported for now, aborting."
+ echo "Only Fedora 20-25 are supported for now, aborting."
exit 1
fi
elif [[ $distribution == 'centos' ]]; then