From 06962feb3320a64ea8f46d1637c3bf5dc54ceaa4 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Mon, 16 Dec 2024 23:56:53 -0500 Subject: [PATCH] Fix cmake Python executable doc reference --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5993f01b0..1d05e7069 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ ctest #### With Python -You have to be careful about what python version Pangolin has found and is attempting to link against. It will tell you during the `cmake ..` step and you can change it by explicitly telling it the python executable with `cmake -DPython_EXECUTABLE=/path/to/python ..`or ``cmake -DPython_EXECUTABLE=`which python3` `` to use the python accessed through the `python3` alias. +You have to be careful about what python version Pangolin has found and is attempting to link against. It will tell you during the `cmake ..` step and you can change it by explicitly telling it the python executable with `cmake -DPython3_EXECUTABLE=/path/to/python ..`or ``cmake -DPython3_EXECUTABLE=`which python3` `` to use the python accessed through the `python3` alias. If python is found, the pypangolin module will be built with the default `all` target. A Python wheel can be built manually using the `pypangolin_wheel` target, and the wheel can be installed / uninstalled with `pypangolin_pip_install` and `pypangolin_pip_uninstall` targets.