https://github.com/Microsoft/CNTK
Raw File
Tip revision: 960980eeed8dc835329da31fcdf0c64e1cf0a478 authored by KeDengMS on 22 February 2017, 07:22:49 UTC
Add reader lib to cntk library
Tip revision: 960980e
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