Reputation: 14008
I'm trying to learn pybind11
and the first Google result is this page, where you should be guided towards compiling and running some test cases. From this page, I have installed bybind11
by:
pip3 install pybind11
and I have installed:
sudo apt install python3-dev cmake
as instructed in the original page. But I don't know how to go to the next step which is to
mkdir build ...
and the rest of the steps to compile the test cases. I suppose this should be inside the pybind11
installation folder installed via pip3
.
my environment is:
and my questions are:
P.S.1. using pip3 show pybind11
I realized that I have version 2.4.3
installed and the installation folder is /usr/<userName>/.local/lib/python3.6/sitepackages
. However, inside the pybind11
folder there are no test cases as far as I can see.
P.S.2. From here I installed via sudo apt install python-pybind11
and from here using dpkg --listfiles python-pybind11
I found the installation folder at /usr/lib/python2.7/dist-packages/
. Not only there are no test cases in this folder either, but this is also python2.7 which I don't want to use!
Upvotes: 8
Views: 3456
Reputation: 4673
You need to install pybind11
as instructed here by cloning the GitHub repository:
python3 -m pip install pytest numpy scipy
sudo apt install -y cmake python3-dev libeigen3-dev libboost-dev git
git clone https://github.com/pybind/pybind11.git
cd pybind11
cmake -DDOWNLOAD_CATCH=1
mkdir build
cd build
cmake ..
sudo make install
cd ..
Then you can run the tests by going to the folder cd tests
. Next, follow steps in the tutorial, starting with mkdir build
.
P.S. You may also need to make sure your Python packages are up to date, following the instructions here.
Upvotes: 6