Giter Club home page Giter Club logo

Comments (3)

chenguoguo avatar chenguoguo commented on June 27, 2024 1

Yes, you'll have to install python-dev to get the Makefile work. Regarding swig, I normally don't do apt-get install swig, as I experienced issues (the detection doesn't work properly) with swig installed from apt-get install. I usually install it from source code, using the following commands (it's not included in the Makefile):

#!/bin/bash

# SWIG is a tool to compile c++ code into Python.

echo "Installing SWIG"

if [ ! -e swig-3.0.7.tar.gz ]; then
  wget -T 10 -t 3 \
    http://prdownloads.sourceforge.net/swig/swig-3.0.7.tar.gz || exit 1;
fi

tar -xovzf swig-3.0.7.tar.gz || exit 1
ln -s swig-3.0.7 swig

cd swig

# We first have to install PCRE.
if [ ! -e pcre-8.37.tar.gz ]; then
  wget -T 10 -t 3 \
    ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.37.tar.gz || exit 1;
fi
Tools/pcre-build.sh

./configure --prefix=`pwd` --with-pic
make
make install

cd ..

If you see wired issues, you can try to install swig from source code. BTW, if you are only using the python wrapper, we do provide precompiled versions for Raspberry Pi, see here.

from snowboy.

tiny-tinker avatar tiny-tinker commented on June 27, 2024 1

Woohoo!! It works!
Yea, I removed swig and ran your script, but I did a global install, so I removed the --prefix=${pwd} (How does one escape markdown?? lol) and then changed make install to sudo make install. This raspberry will be dedicated to using this snowboy so I think that should be ok.

from snowboy.

stridera avatar stridera commented on June 27, 2024

if you follow the instructions (and apt-get swig3.0) you can edit the make file to do this:
SWIG := swig3.0

(was SWIG := swig)

from snowboy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.