This is a program made for the simulation of multiple pendulums. The user can create one ore more pendulums through the GUI.
Windows 10.
First, you have to install python2.7. You can install it from here: (Windows X86-64 MSI Installer): https://www.python.org/download/releases/2.7/
If you have already installed python2.7, then clone the repo. You will need to install numpy and WxPython. In cmd, you can write this:
pip install numpy
pip install wxPython
You can run the program with:
python scripts/main.py
The program was built with python 2.7, along with numpy and wxPython modules. WxPython is used for creating easily native guis. Numpy is a package used for scientific computing. In this case, we're using numpy for liniar algebra.