https://github.com/Microsoft/CNTK
Raw File
Tip revision: 8e8b5ff92eff4647be5d41a5a515956907567126 authored by Mark Hillebrand on 22 December 2016, 09:29:41 UTC
Examples/SequenceClassification/SimpleExample/Python/SequenceClassification.py: fix sys.path.append()
Tip revision: 8e8b5ff
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