Installation

The FRICOSIPY model can be installed by following the proceeding three basic steps:


Downloading the FRICOSIPY Model

\((1)\) Download the latest version latest version of the FRICOSIPY model from GitHub and unpack its contents from the ZIP archive folder.


Changing the Working Directory

\((2)\) Navigate to the directory where you have downloaded the FRICOSIPY model in the command prompt using the 'cd' (change directory) command: Eg.

python cd C:\Users\<username>\Downloads\FRICOSIPY

Note

It is reccomended to move the model to a more suitable working directory.


Creating the Conda Environment

\((3)\) Create the conda environment using the designated packages in the requirements text file.

python conda create --name <env> --file requirements.txt

Note

If you do not have Miniconda already installed, you must download and install it first from Anaconda: (https://www.anaconda.com/download).

Henceforth, when running the FRICOSIPY model you must always ensure this new conda environment is active on your terminal:

python conda activate <env>