arduino ide - How to install VPython on Python 3.6 (python distribution)? - Stack Overflow
help with Vpython installation
python - Unable to install Vpython with Anaconda using conda install - Stack Overflow
Setting up SciPy + vpython
I have minimal experience with IPython/Jupyter but I think I just made what you want to do work.
I have an Anaconda distribution downloaded. I pip install vpython, seems to install just fine. Then I run jupyter notebook. This opens a new tab in my browser called Home. There is a drop-down menu in the top-right that says New. I click on that and select the option VPython. There is one empty cell in this notebook. Then I can do this:
http://puu.sh/qFchL/f8cb899950.png
More on reddit.comVideos
ยป pip install vpython
I am trying to install Vpython using Visual Studio code using pip install vpython in the terminal
after importing the library and running this error happened:
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
File "C:\Users\Perfect0\AppData\Local\Programs\Python\Python39\lib\site-packag
es\vpython\vpython.py", line 22, in Exit
a = 1.0/zero
ZeroDivisionError: float division by zero
so I searched for a solution and i happened to find that one that is to add this to the end of the main thread
while true:
pass
the error didn't happen but the sphere i was creating was not there, this is the code
import vpython
ball = vpython.sphere()
while True:
pass