forked from keras-team/keras-contrib
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing the installation of dependencies in travis.yml (keras-team#334)
* Added the forgotten semicolon. * Added the executable bit for cntk * Install cntk in all cases because of the backend tests. * Removed progress bar from pip and converted lines endings Win -> Unix
- Loading branch information
1 parent
98c4a8d
commit 6574bad
Showing
2 changed files
with
13 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
set -e | ||
pip install cntk | ||
|
||
# open mpi is needed for cntk | ||
rm -rf ~/mpi | ||
mkdir ~/mpi | ||
pushd ~/mpi | ||
wget http://cntk.ai/PythonWheel/ForKeras/depends/openmpi_1.10-3.zip | ||
unzip ./openmpi_1.10-3.zip | ||
sudo dpkg -i openmpi_1.10-3.deb | ||
popd | ||
set -e | ||
pip install cntk --progress-bar off | ||
|
||
# open mpi is needed for cntk | ||
rm -rf ~/mpi | ||
mkdir ~/mpi | ||
pushd ~/mpi | ||
wget http://cntk.ai/PythonWheel/ForKeras/depends/openmpi_1.10-3.zip | ||
unzip ./openmpi_1.10-3.zip | ||
sudo dpkg -i openmpi_1.10-3.deb | ||
popd |