0

I want to get Vpython on Python 3.6(Python Distribution). I couldn't find an option except for anaconda. Please help because I want to process the data coming from Arduino to Python making 3D visualizations.

1 Answers1

0

See VPython's website for install options and how the new VPython differs from the older classic VPython. The new VPython works with python 3.6. The old classic VPython works only with python 2.x.. If you have the old classic VPython on your computer then you might need to uninstall it first. Then install the new VPython version 7 with pip.

pip install VPython 

Then launch IDLE or spyder python IDE and try running this simple program:

from VPython import *

box()

You should see a 3d canvas with a box appear in your webb browser.

Daniel
  • 1,229
  • 14
  • 24
John
  • 11
  • 1