https://github.com/Microsoft/CNTK
Raw File
Tip revision: 8e93cf605d704ddfb8a04b78f6a1994fcd07ac86 authored by Eldar Akchurin on 12 April 2017, 09:43:42 UTC
Some fixes
Tip revision: 8e93cf6
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