paleolimbot commented on issue #570: URL: https://github.com/apache/sedona-db/issues/570#issuecomment-3837670705
Ah, I missed that you are on MacOS Intel? If that is the case, I think the failure is because we haven't released a version with MacOS Intel wheels; however, we did just add them and they are available as nightlies. As a workaround today I would suggest: ```shell pip install --upgrade apache-sedona pip install --pre --force-reinstall sedonadb --extra-index-url=https://repo.fury.io/sedona-nightlies/ ``` To solve the very confusing installation issue, I think we can (1) update the install instructions here to `pip install --upgrade "apache-sedona[db]"`, which should handle updating a version of apache-sedona in the current environment if there was one, and (2) update the import wrapper in `apache-sedona` to give a better error message if `sedonadb` fails to import: ```python try: import sedonadb except ImportError: raise ImportError("Failed to import sedonadb. Install using `pip install sedonadb`") ``` ...or similar. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
