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 ran uv sync, and it hrows this error on MacOS 15
Resolved 245 packages in 9ms
error: Distribution `onnxruntime==1.19.2 @ registry+https://pypi.org/simple` can't be installed because it doesn't have a source distribution or wheel for the current platform
The text was updated successfully, but these errors were encountered:
I found another way to work around then we can use the latest crewai on macos.
Replace the uv sync or crew install with the following commands.
uv export --format requirements-txt > requirements.txt
uv pip install --requirements requirements.txt
# If any dependencies fail, just run
# uv pip install packagename==version
# to install. Such as pyarrow==19.0.0.
Replace the crew run with uv run --no-sync run_crew. You may also load .env before running any crew.
I ran
uv sync
, and it hrows this error on MacOS 15The text was updated successfully, but these errors were encountered: