Currently running Windows 10, python version 3.8.5 in Visual Studio Code.
Every time I attempt to execute any program using vpython the program works fine, but permanently locks up my integrated terminal so that it cannot be used anymore. It still displays the old text from previous runs but will not accept any new program executions or allow anything to be typed into the terminal. All other programs I have tried work just fine, but any program that uses vpython freezes it. The same vpython programs work just fine in IDLE. I have made sure that I have "Run this program in compatibility mode for" unchecked already.
MWE
from vpython import *
ball = sphere(pos=vector(-5, 0, 0), radius=0.5, color=color.cyan)