We investigate a classical problem in combinatorial topology, which is to triangulate a polytope in n-dimensional space.
- Download PyCharm (free edition) from https://www.jetbrains.com/pycharm/.
- Download Python 3.10 from https://www.python.org/downloads/.
- Open PyCharm and select
Get from VCS. - Enter this project's .git link.
- Specify the download location to be the
PyCharmProjectsfolder.
- You may be prompted by PyCharm to install a Virtual Environment based on the
requirements.txtfile. - Follow the onscreen instructions to do so.
- Make sure you specify your installed Python 3 for creating the Virtual Environment.
- Open PyCharm Settings and locate the
Project: Triangulationpane. - Click on
Project Interpreter. - Add a new
VirtualEnvenvironment with your system Python. - Restart PyCharm and open its local
Terminal. - Type the command
pip3 install -r requirements.txtto install project dependencies.
- Open the local
Terminalon PyCharm. - Type the command
jupyter notebookto open up a new Jupyter Server. - Click on the
Triangulation.ipynbfile to open the notebook. - Run each code cell using the toolbar on top of the window.