CMake: more clear instructions for python dependencies

This commit is contained in:
Lorenz Meier 2017-07-02 17:15:12 +02:00
parent 5a4714fef2
commit 792b03628f
1 changed files with 2 additions and 2 deletions

View File

@ -623,9 +623,9 @@ function(px4_find_python_module module)
\nfor debian systems try: \
\n\tsudo apt-get install python-${module} \
\nor for all other OSs/debian: \
\n\tpip install ${module}\n" PY_${module_upper})
\n\tsudo -H pip install ${module}\n" PY_${module_upper})
#if (NOT PY_${module}_FOUND)
#message(FATAL_ERROR "python module not found, exitting")
#message(FATAL_ERROR "python module not found, exiting")
#endif()
endfunction(px4_find_python_module)