https://github.com/Microsoft/CNTK
Raw File
Tip revision: 9b0a342ca0321b370232a9b1a3e19823399ccd41 authored by Alexey Orlov on 27 March 2017, 13:10:01 UTC
Tweaking wheel version to test drops
Tip revision: 9b0a342
swig_install.sh
#!/bin/bash

wget http://prdownloads.sourceforge.net/swig/swig-3.0.10.tar.gz

tar xvfz swig-3.0.10.tar.gz

pushd swig-3.0.10

./configure --without-java --without-perl5 --prefix=$(readlink -m ./root)

make -j 4

make install
back to top