-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Error bootstrapping on CentOS #71227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I would accept a PR doing what you suggest is obvious. |
Also, is there a reason that the bootstrapping script uses |
We have a number of fallbacks, but it was my perspective that we should prefer python and fallback to python3, at least for now; I suspect systems may prefer to install to python rather than python3. We work with both 2.7 and 3. |
Okay, thanks for clarifying. Makes detecting whether |
@alexreg on CentOS 8, |
EOL for CentOS 7 is June 30, 2024; if we haven't heard back by then i think this issue should just be closed. |
It looks like the bootstrapper does not use
cmake3
on CentOS (i.e., CMake 3.x) but insteadcmake
(i.e., version 2.x). This results in the errorCMake 3.4.3 or higher is required. You are running version 2.8.12.2
. The fix would seem to be obvious: check forcmake3
before falling back tocmake
.Relevant section of console output:
The text was updated successfully, but these errors were encountered: