Before installing the SuRFM package, make sure you have the following prerequisites installed on your system:
First, clone the SuRFM repository from GitHub to your local machine. You can do this using the following command:
git clone https://github.com/arturavagyan2/MA_Group_Project.git
cd SuRFM
It’s a good practice to use a virtual environment to isolate package dependencies. To set up a virtual environment, you can use venv:
python -m venv surfm-env
source surfm-env/bin/activate # On Windows use `surf-env\Scripts\activate`
Install all the required dependencies using pip:
pip install -r requirements.txt
This command will install all the libraries needed for the SuRFM package, as specified in the requirements.txt file.
To install SuRFM so that it’s usable as a module, run:
pip install .
This command will install the SuRFM package into your Python environment.
After installation, you can verify that SuRFM is correctly installed by running:
import surfm
print(surfm.__version__)
This command should print the version number of the SuRFM package if it’s installed correctly.
For further assistance, contact the support team through the repository’s issues page or via email.