Install Procedure:
- download this whole folder
- download IDE of choice (eg. VSCODE or sth)
- open this folder in IDE
- open up a terminal window in IDE
- check if python 3.9.12 is installed by running
python3 --version
- if displayed version does not match 3.9.12, download python 3.9.12 from
https://www.python.org/downloads/release/python-3912/
- check if pip3 is installed using
pip3 --version
- if not installed, install pip3 with
sudo apt install python3-pip
- close and reopen terminal window after installation process
- check that you are in the correct folder with
ls
, you should find the requirements.txt file listed - if not, find the path to
requirements.txt
, copy it - then do
pip3 install -r /path/to/requirements.txt
, replace/path/to/requirements.txt
with your copied path - else if you are in the correct folder do
pip3 install -r requirements.txt
- try to run the
CTS_determinant.py
file - IF ANY IMPORTS ARE MISSING, CONSULT GOOGLE WITH "HOW TO INSTALL
INSERT MISSING IMPORT
"