-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
missing cmake/bundle_static.cmake when installing unicorn on MacOS 14.5 x86_64 #2015
Comments
Look like we missed this file. Why not installing with the wheel? There is the wheel: https://files.pythonhosted.org/packages/ee/24/86da6b3b490d4fa45bc9d4a7b5debbb8f57c704809a6c51e0374cf83ae6f/unicorn-2.1.1-py2.py3-none-macosx_12_7_x86_64.whl |
Yes, I finally install it by manually downloaded whl file. |
It's weird. pypi should select the wheel automatically. Unfortunately, I don't have an x86_64 macOS to verify. Could you go with |
I tried it as following: pip3 uninstall unicorn
pip3 install -i https://pypi.python.org/simple --only-binary=:all unicorn And still geting the same error:
|
How about |
try with no luck. same error hints. full log: pip3 install --no-cache-dir --only-binary=:all: unicorn==2.1.1pip3 install -i https://pypi.python.org/simple --no-cache-dir --only-binary=:all unicorn==2.1.1 Looking in indexes: https://pypi.python.org/simple Collecting unicorn==2.1.1 Downloading unicorn-2.1.1.tar.gz (2.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/2.8 MB 19.2 kB/s eta 0:00:00 Preparing metadata (setup.py) ... done Building wheels for collected packages: unicorn Building wheel for unicorn (setup.py) ... error error: subprocess-exited-with-error× python setup.py bdist_wheel did not run successfully.
note: This error originates from a subprocess, and is likely not a problem with pip. full log: pip3 install --no-cache-dir --only-binary=:all: unicorn==2.1.0pip3 install -i https://pypi.python.org/simple --no-cache-dir --only-binary=:all unicorn==2.1.0 Collecting unicorn==2.1.0 Downloading unicorn-2.1.0-py2.py3-none-macosx_10_9_universal2.whl.metadata (1.3 kB) Downloading unicorn-2.1.0-py2.py3-none-macosx_10_9_universal2.whl (12.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.0/12.0 MB 17.4 kB/s eta 0:00:00 Installing collected packages: unicorn Successfully installed unicorn-2.1.0 |
I need to find an x86_64 macOS to see why it breaks. We will release 2.1.2 shortly to reflect a series of fixes. |
install unicorn 2.1.1 with command
pip3 install -i https://pypi.python.org/simple unicorn==2.1.1
and error occurs:The error indicates file
cmake/bundle_static.cmake
is unable to be found. Any suggestion on it?The text was updated successfully, but these errors were encountered: