Skip to content

Commit 7a46fe2

Browse files
Alexander ReimannAlexander Reimann
authored andcommitted
Specify using python 3
Fixes not working usage of 2.7 under melodic
1 parent 5bdf0cb commit 7a46fe2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

elevation_mapping_cupy/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
cmake_minimum_required(VERSION 3.0.2)
33
project(elevation_mapping_cupy)
44

5-
find_package(PythonInterp REQUIRED)
6-
find_package(PythonLibs REQUIRED)
5+
find_package(PythonInterp 3 REQUIRED)
6+
find_package(PythonLibs 3 REQUIRED)
77

88
if(PYTHONLIBS_FOUND)
99
message(STATUS "Using Python Libraries at: " ${PYTHON_LIBRARIES})

0 commit comments

Comments
 (0)