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
a first pixi shell -e layoutparser works as expected (everything is installed). However, a 2nd one is still re-downloading the git repository (which is already cloned). this makes this task very slow.
It can be remediated by: pixi shell -e layoutparser --frozen
However a:
pixi shell -e layoutparser --locked
Error:
× lock-file not up-to-date with the project
Removing:
detectron2 = { git = "https://github.com/facebookresearch/detectron2.git", tag = "v0.6" }
fixes the inconsistency
The text was updated successfully, but these errors were encountered:
geoHeil
changed the title
do not re-clone github based dependency
inconsistent lockfile for github + do not re-clone github based dependency
Jan 9, 2025
Thanks for the report, the problem is that tag and branch aren't "locked" versions, so we refetch to validate the state of the tag or branch. This takes time.
A workaround for now is the use of rev instead of tag.
What would you expect that pixi should do? We might be able to only refetch on pixi install or something a like?
Problem description
given
a first
pixi shell -e layoutparser
works as expected (everything is installed). However, a 2nd one is still re-downloading the git repository (which is already cloned). this makes this task very slow.It can be remediated by:
pixi shell -e layoutparser --frozen
However a:
Removing:
fixes the inconsistency
The text was updated successfully, but these errors were encountered: