My Physics class requires me to use VPython for making models and such. I love the idea of incorporating code into Physics and VPython seems to be pretty good overall, but VPython really wants you to use VIDLE, their version of IDLE, as your IDE.
I am trying to use it in my favorite Python IDE, PyCharm. If I run a script that uses VPython modules that I know works in VIDLE, I get an error:
ImportError: No module named visual
I can go to PyCharm's Project Interpreter page, where it appears that I'm supposed to be able to add and remove modules, but I can't figure out how to do it. If I click Add/Install Package it brings up a searchable list of tons of available packages (from PyPi database, right?), but VPython is not on the list.
It appears that VPython is made up of 3 modules called "vis", "visual", and "visual_common" and also installs other modules "numpy" (already installed), "FontTools", "Polygon", and "ttfquery".
Any ideas? Hopefully it's just something simple.