-
Notifications
You must be signed in to change notification settings - Fork 910
Can not build the project in W11 on ARM64 #1092
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
Please provide native wheel for WoA. GitHub Actions now supports win-arm64 for free. Due to the library's popularity, a native version for the growing number of Windows on ARM (WoA) devices offers a better user experience |
Latest info about the build process I have:
cmake_args.append("-DBUILD_opencv_dnn=OFF")
cmake_args.append("-DENABLE_NEON=OFF") |
related #806 |
Thanks! So in GitHub action, this is how I achieved it: env:
# https://github.com/opencv/opencv-python#source-distributions
# Allows building OpenCV on Windows ARM64
# https://github.com/opencv/opencv-python/issues/1092#issuecomment-2862538656
CMAKE_ARGS: "-DBUILD_opencv_dnn=OFF -DENABLE_NEON=OFF"
jobs:
Build:
runs-on: windows-11-arm
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.13
- run: pip install opencv-contrib-python-headless |
Uh oh!
There was an error while loading. Please reload this page.
I failed to install the package directly from PIP or manual build.
I found a related issue opened at #644 (comment) from two years ago. I installed all the tools and dependencies mentioned in the comment and repository's Manual Build section. However, I see bunch of error messages related to the cmake building.
I am wondering if ARM64 on W11 is supported? Could you please add the ARM64 on windows wheel to the CI?
The text was updated successfully, but these errors were encountered: