I work with Python 3.10.0. I installed vpython using pip, it was installed successfully.
Then when I just use:
from vpython import *
print('hello')
hello
is printed, and after that I get the following Error:
exit
Exception ignored in atexit callback: <function Exit at 0x1095d4ee0>
Traceback (most recent call last):
File "/Users/.../.pyenv/versions/3.10.0/lib/python3.10/site-packages/vpython/vpython.py", line 22, in Exit
a = 1.0/zero
ZeroDivisionError: float division by zero
What does this mean? What can I do?