From abd2bb4eb738eef2007c43206a353ca38d4fdf6e Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Thu, 13 Feb 2020 14:58:22 +0100 Subject: [PATCH] cmake: fix Python 3 libs name This was just wrong. `devel` might be correct on Fedora but no on Ubuntu :). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 81e7b0719b..835b8fa165 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -271,7 +271,7 @@ if (NOT CATKIN_DEVEL_PREFIX) # We have a custom error message to tell users how to install python3. if (NOT PYTHONINTERP_FOUND) message(FATAL_ERROR "Python 3 not found. Please install Python 3:\n" - " Ubuntu: sudo apt install python3 python3-devel python3-pip\n" + " Ubuntu: sudo apt install python3 python3-dev python3-pip\n" " macOS: brew install python") endif() else()