-
Notifications
You must be signed in to change notification settings - Fork 36
3.14, "Problem with the CMake installation, aborting build" #76
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
Since starting with CMake 3.14, only manylinux2010 compatible wheels are available, requiring any version of cmake ends building cmake from source when installed from a manylinux1 system. See scikit-build/cmake-python-distributions#76
Starting with CMake 3.14.3, manylinux2010 is used to build the wheel ... and since manylinux1 is used by multibuild, the Waiting this addressed in multibuild, I submitted a PR to "work around" the issue. I think this might be a pip issue, it should not decide to build the project from source right way and instead look if older version are compatible. |
An issue has been reported in upstream, see pypa/pip#6547 |
cmake version 3.29 python3.12 llama-cpp-python=0.2.57 |
Might be related to #60 and mentioned PR
Before 3.14:
python -m pip install cmake pybind11 scikit-build
worked fine
With 3.14:
ImportError: No module named 'skbuild'
Full log:
https://travis-ci.org/equinor/dlisio/jobs/537728246
Changed installation order:
python -m pip install scikit-build
python -m pip install cmake
File "/opt/python/cp35-cp35m/lib/python3.5/site-packages/skbuild/cmaker.py", line 81, in get_cmake_version
Problem with the CMake installation, aborting build. CMake executable is cmake
Full log:
https://travis-ci.org/equinor/dlisio/jobs/537745800
The text was updated successfully, but these errors were encountered: