File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed
Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ bash setup_ubuntu.sh
1616
1717### Windows
1818
19+ ** Ensure pybind11 is installed before running the following command.**
20+
1921```
2022setup_windows.bat
2123```
Original file line number Diff line number Diff line change @@ -144,15 +144,8 @@ echo.
144144echo Checking for pybind11...
145145pip show pybind11 > NUL 2 >& 1
146146if %errorlevel% neq 0 (
147- echo pybind11 not found. Attempting to install pybind11...
148- pip install pybind11
149- if %errorlevel% neq 0 (
150- echo Error: Failed to install pybind11. Exiting.
151- goto :cleanup_and_exit
152- )
153- echo pybind11 installed successfully.
154- ) else (
155- echo pybind11 is already installed.
147+ echo Error: pybind11 not found. Please install pybind11 first. Exiting.
148+ goto :cleanup_and_exit
156149)
157150
158151:: --- Set PYBIND11_DIR for CMake ---
You can’t perform that action at this time.
0 commit comments