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 get a warning with the llmvmlite and numba install:
warning: Failed to hardlink files; falling back to full copy. This may lead to degraded performance.
If the cache and target directories are on different filesystems, hardlinking may not be supported.
If this is intentional, set `export UV_LINK_MODE=copy` or use `--link-mode=copy` to suppress this warning.
The text was updated successfully, but these errors were encountered:
I thought this would be solved with a dependency change in laser-core but it hasn't entirely solved the problem.
the current default Codespace has NumPy 2.x installed which causes Numba grief.
One option is to pip uninstall -y numpy==2.1.1 (use pip list | grep numpy to determine the actual version of Numpy) and then pip install --upgrade -e . to get laser-measles dependencies installed.
Following @clorton 's instructions for installing:
I get a warning with the
llmvmlite
andnumba
install:The text was updated successfully, but these errors were encountered: