For some reason my default process security policy is RemoteSigned. This interferes with using an venv with PyCharm. The following is the only thing I've found online and doesn't change the default. It only changes it inside that PowerShell instance.
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Unrestricted -Force
I want the default to be Unrestricted. Running PyCharm as admin does not help. I'm also on Windows 11.