You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried using the current main branch, which includes pandas, but I'm still running into an odd error trying to install numpy, which is one of its dependencies. I've removed pandas from the Pipfile in PR #22, but I'm hoping I can figure out why this isn't working for me before then.
I tried running pipenv install --dev and got this error log.
Let me know if anybody has any idea why this might be happening. Otherwise, I'll keep poking at it locally.
The text was updated successfully, but these errors were encountered:
Looks like the main error is: ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly
Which is being caused by this:
File "/private/var/folders/j7/wl1qrc1n7fv9vnszw_0dsm680000gn/T/pip-build-env-cs0zxz7a/overlay/lib/python3.9/site-packages/wheel/macosx_libfile.py", line 356, in calculate_macosx_platform_tag
assert len(base_version) == 2
AssertionError
That seems really silly. Why should it have to run these tests to build the wheel. I am kinda annoyed when binaries aren't pre-built anyway. Maybe there's a good reason though.
Possible solutions
I googled "numpy install error calculate_macosx_platform_tag", since looks like err occurs in the calculate_macosx_platform_tag func. Good enough place to start a search. I found this:
I tried using the current
main
branch, which includespandas
, but I'm still running into an odd error trying to installnumpy
, which is one of its dependencies. I've removedpandas
from the Pipfile in PR #22, but I'm hoping I can figure out why this isn't working for me before then.I tried running
pipenv install --dev
and got this error log.Let me know if anybody has any idea why this might be happening. Otherwise, I'll keep poking at it locally.
The text was updated successfully, but these errors were encountered: