fix docs build command on different global and venv python versions

This commit is contained in:
Nikul Patel 2024-09-08 13:08:53 +01:00
parent 8a801bdc32
commit 20f37d8ff8
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ On Linux, the above example can be compiled using the following command:
.. code-block:: bash
$ c++ -O3 -Wall -shared -std=c++11 -fPIC $(python3 -m pybind11 --includes) example.cpp -o example$(python3-config --extension-suffix)
$ c++ -O3 -Wall -shared -std=c++11 -fPIC $(python3 -m pybind11 --includes) example.cpp -o example$(python3 -c 'import sysconfig; print(sysconfig.get_config_var("EXT_SUFFIX"))')
.. note::