Opening TGI for the first time:

1) Install Anaconda https://docs.anaconda.com/free/anaconda/install/index.html
2) Open Anaconda Prompt
3) Create a virtual environment in Python 3.7 called 'TGI' with the below command
	conda create --name TGI python=3.7
4) Activate the virtual environment with the below command
	conda activate TGI
5) Install networkx in the virtual environment with the below command
	conda install networkx
6) Install graphviz in the virtual environment with the below command
	conda install graphviz
7) Install pygraphviz in the virtual environment with the below command
	conda install -c alubbock pygraphviz
8) Open Python IDLE while in the virtual environment with the below command
	python -m idlelib.idle
9) Once IDLE opens, click 'File' --> 'Open'
10) Select TGI.py
11) On the newly-opened Python script, click 'Run' --> 'Run Module'
12) Success (I truly truly hope...... >:O )

To get TGI running after the first time, you need only go through steps 2, 4, 8, 9, 10, and 11. So:
1) Open Anaconda Prompt
2) Activate the virtual environment with the below command
	conda activate TGI
3) Open Python IDLE while in the virtual environment with the below command
	python -m idlelib.idle
4) Once IDLE opens, click 'File' --> 'Open'
5) Select TGI.py
6) Click 'Run' --> 'Run Module'

For guidance on using the software once it's running, have a look at documentation.pdf