-
Notifications
You must be signed in to change notification settings - Fork 36
Description
Summary
Installing cmake on aarch64 linux platform via pip using command "pip3 install cmake" tries to build wheel from source code.
Problem description
Cmake don't have wheel for aarch64 on PyPI repository. So, while installing cmake via pip on aarch64, it builds wheel from source which takes more time to install cmake. Making wheel available for aarch64 will benefit aarch64 users by minimizing installation time.
Expected Output
Pip should be able to download cmake wheel from PyPI repository rather than building it from source code.
@thewtex , I was able to build wheel with command "python setup.py bdist_wheel" and wheel has been created for specific python version in dist folder. I have tried installing in aarch64 linux platform with command "pip install cmake-xxx.whl", it got installed successfully. Please let me know if any help required in building wheel and uploading it to PyPI repository.