-
Notifications
You must be signed in to change notification settings - Fork 8
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
Fails to install on macOS 10.15.4 #16
Comments
I’m using Python 3.7.6 inside a conda environment (macOS 10.15.4).
I believe the underlying issue here is with macOS deprecating libstdc++, see spotify/annoy#349 (comment)
Am 3. Apr. 2020, 20:50 +0200 schrieb Fabien <[email protected]>:
… A few questions to help me troubleshoot:
• Which version of Python are you using?
• Are you using the default python install or a virtual environment?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
I have done a few fix on the API. The fix have been tested on Windows on Ubuntu. Does it fix anything for you? |
@fabanc I have faced the error with MacOS: 14.3.1.
fixed as mentioned here:
|
Sounds good. It is something I can add in the setup.py file. I am currently working on building the wheels on most OS using cibuildwheel. I am hopping it will:
I have been on that on and off over the past 2 months. The builds can now be generated from Python 3.9 to 3.12 on Windows, Ubuntu, and MacOS. I am working on pushing those automatically to pypi. Stay tuned. |
@bulatbulat48 Using cibuildwheel, I can now generate the wheels for Mac OS. I have pushed those wheels as part of the latest release 1.1.4. Care to give it a try using pypi and see if this solves that problem for you? |
I'm fairly confident this should work now from binary wheels. |
pip install pyvoronoi
gives the following error:The fix is to run
CFLAGS="-stdlib=libc++" pip install pyvoronoi
.The text was updated successfully, but these errors were encountered: