From 57d19b1adb50c69d2f9175c52d942252e8b7e15f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Barrag=C3=A1n=20Calder=C3=B3n?= Date: Sat, 19 May 2018 22:47:15 -0500 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3d1b328a..8b286442 100644 --- a/README.md +++ b/README.md @@ -216,11 +216,23 @@ Make sure that you can record audio with your microphone: ### Ubuntu/Raspberry Pi/Pine64/Nvidia Jetson TX1/Nvidia Jetson TX2 -First `apt-get` install `swig`, `sox`, `portaudio` and its Python binding `pyaudio`: +First `apt-get` install `sox`, `portaudio` and its Python binding `pyaudio`: - sudo apt-get install swig3.0 python-pyaudio python3-pyaudio sox + sudo apt-get install python-pyaudio python3-pyaudio sox pip install pyaudio +Compile a supported swig version (3.0.10 or above) + + wget http://downloads.sourceforge.net/swig/swig-3.0.10.tar.gz + sudo apt-get install libpcre3 libpcre3-dev + ./configure --prefix=/usr \ + --without-clisp \ + --without-maximum-compile-warnings && + make + make install && + install -v -m755 -d /usr/share/doc/swig-3.0.10 && + cp -v -R Doc/* /usr/share/doc/swig-3.0.10 + Then install the `atlas` matrix computing library: sudo apt-get install libatlas-base-dev