https://github.com/Microsoft/CNTK
Raw File
Tip revision: 93b01074eb11e192dc8146ecb5f89055e6900d08 authored by Mark Hillebrand on 09 January 2017, 17:33:11 UTC
Crate MNIST CTF with LF independent of platform
Tip revision: 93b0107
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