我用
apt-get install libboost-all-dev
但是当我用python3导入boost时,我遇到了一些错误
In [1]: import boost
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-df3240a4d6cf> in <module>()
----> 1 import boost
/usr/lib/python3/dist-packages/boost/__init__.py in <module>()
7 sys.setdlopenflags(flags)
8 else:
----> 9 import mpi
10
ImportError: No module named 'mpi'
我尝试使用pip3安装模块mpi,但似乎没有名为mpi的模块。
顺便说一句,boost在python2.7中运行良好。
我该怎么办?