从Snowboy的Git仓库拉取仓库文件
根据系统,安装必要的文件,在README文件中
其他配置
然后去swig文件中编译每种语言需要的swig文件,这里可能会遇见一些奇怪的错误
0.三连击
./configure
make
make install
如果权限不够 加上sudo
1.swig版本不够
ubuntu库中最新的swig是3.0.9的,而运行编译文件至少需要3.0.10的,那就自己去swig官网下载最新的swig文件,自己手动编译
2.缺少PCRE文件,Centos的方法,Ubuntu类似,
1、下载swig2.0.9版本,地址:http://www.swig.org/download.html
2、安装gcc、g++(已有则跳过此步)
#yum -y install gcc automake autoconf libtool make
#yum install gcc gcc-c++
3、安装PCRE,地址:Perl Compatible Regular Expressions Perl Compatible Regular Expressions Perl Compatible Regular Expressions Perl Compatible Regular Expressions(已有则跳过)
#./configure
#make && make install
4、解压swig2.0.9并编译安装
#./configure --prefix=/usr/local/swig2.0.9
#make && make install
5、安装完成后将路径添加到文件,#vim /etc/profile ,在最后添加一行:PATH=/usr/local/swig2.0.9/bin:$PATH。保存后重新加载生效:$source /etc/profile
6、尝试运行swig,如果出现swig:error while loading shared libraries:libpcre.so.1异常,则运行#ldd $(which swig),理论上会看到libpcre.so.1 => not found。
7、手动添加链接:#ln -s /usr/local/lib/libpcre.so.1 /lib,完毕后再次运行swig,一切正常,#swig -version可看到版本信息。
3.编译完以后去example文件里,找到自己语言的demo文件,例如Python的
python2 demo.py resources/snowboy.umdl
4.调整库文件版本
sudo aptitude A=1.2.0111