Skip to content

Instantly share code, notes, and snippets.

@alfredodeza
Created July 12, 2021 19:26
Show Gist options
  • Save alfredodeza/8a01fd4d148b63d32e3604d065fe1237 to your computer and use it in GitHub Desktop.
Save alfredodeza/8a01fd4d148b63d32e3604d065fe1237 to your computer and use it in GitHub Desktop.
OSX fixing missing cmake executable
# Install cmake with homebrew, which prevents:
# AssertionError: Could not find "cmake" executable!
brew install cmake
# and then install protobuf which fixes:
# CMake Error at CMakeLists.txt:292 (message):
# Protobuf compiler not found
# Call Stack (most recent call first):
# CMakeLists.txt:323 (relative_protobuf_generate_cpp)
brew install protobuf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment