I tried sudo apt install python3-pyverbs
which indeed installed a package named pyverbs
, but it has "nothing" in it. For example, pyverbs.__version__
would throw an error, saying this is not an attribute; from pyverbs import device as d
would tell me "cannot import name device
from pyverbs
".
For the environment, I successfully installed rdma-core libibverbs-dev
and those required to use verbs in C. My code in C ran perfectly with the existing environment, but I don't know how to install Python API for ib verbs correctly.
Is installing from rdma-core
source the only way to install pyverbs properly?