This question has been asked, but every single answer is bash related: sudo rm -rf venv
just works.
But in Windows:
Remove-Item -Recurse -Force .venv
Error:
Remove-Item : There is a mismatch between the tag specified in the request and the tag present in the reparse point
At line:1 char:1
+ Remove-Item -Recurse -Force .venv
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Remove-Item], Win32Exception
+ FullyQualifiedErrorId : System.ComponentModel.Win32Exception,Microsoft.PowerShell.Commands.RemoveItemCommand
When I look this up it seems to have something to do with PowerShell not being able to delete symbolic links. Is there any clean powershell based solution to deal with this?