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
Error out if git symlink not enabled on Windows (#15684)
When I install executorch on windows I run into this error: error:
[Errno 2] No such file or directory:
'pip-out\\lib.win-amd64-cpython-312\\executorch\\version.py'
This is because we are not enabling symlink in git.
Need to run:
```
git config --global core.symlinks true
```
and reclone the repo.
This PR fails the installation when that happens.
0 commit comments