赞
踩
linux系统自带python2.7,boost编译后会生成libboost_python27.so,但有些应用需要libboost_python3,下面我们就来编译。
进入boost源文件目录boost_1_67_0,配置仅仅编译python,python路径指向anaconda3中的python3.6。
./bootstrap.sh --with-libraries=python --with-toolset=gcc
./b2 cflags='-fPIC' cxxflags='-fPIC' --with-python include="xxx/anaconda3/include/python3.6m/"
sudo ./b2 install
编译安装成功后,/usr/local/lib下会有libboost_python36.so和libboost_python36.a,有些应用link时需要的是libboost_python3.so或者libboost_python3.a,我们建个软链:
cd /usr/local/lib
sudo ln -s libboost_python-py36.so libboost_python3.so
sudo ln -s libboost_python-py36.a libboost_python3.a
大功告成!
------------------------------------------------------------
2019-05-14补充:
上面编译好后,我写了些python module,编译为so文件,并在anaconda3/lib/python3.6/site-packages/中建好了soft link(ln -s dirname/xxx.so),希望能在python中import使用。可进入ipython,import xxx时却遇到报错:
"undefined symbol: PyString_Type"
在anaconda3目录搜了一下PyString_Type,发现居然有python2.7的相关文件中有PyString_Type的定义。默认装好的anaconda是不应该有python2.7的啊,奇怪。进入boost编译目录,./b2 clean再重新编译并install,接着重新编译xxx.so,问题依旧。没办法,尝试将原anaconda3目录备份,重新安装了一份,再按上述编译方法编译了libboost_python3,在新的anaconda3中建好xxx.so的soft link后,在ipython中import xxx就没有问题了。
后来在网上查到说在配置libboost_python的编译时,如果python2.7和python3并存,要指定python3的路径和版本,如下:
./bootstrap.sh --with-python=xxx/anaconda3/bin/python3 --with-python-version=3.6 --with-python-root=xxx/anaconda3/lib/python3.6
说实话,我不知道这个是否真的有效,遇到类似问题的可以试试。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。