# Installation Guide SubsetMask is a lightweight toolkit for coordinate-based subsetting of spatial transcriptomics datasets, with support for interactive region selection. --- ## Install from local folder (downloaded or cloned) ### ✅ Step-by-step 1. **Clone or download the repository**: ```bash git clone https://github.com/RobinCarvajal/SubsetMask.git ``` Or [download the ZIP](https://github.com/RobinCarvajal/SubsetMask/archive/refs/heads/main.zip) and unzip it. 2. **Navigate into the project directory**: ```bash cd SubsetMask ``` 3. **Install the package**: Regular install: ```bash pip install . ``` Or editable/development install: ```bash pip install -e . ``` --- ### 📋 Requirements SubsetMask requires: * Python 3.11+ * `pandas`, `numpy`, `geopandas`, `shapely`, `opencv-python`, `matplotlib`, `imageio`, `napari` If not using `pyproject.toml`, you can install dependencies manually: ```bash pip install -r requirements.txt ``` --- ### 🔍 Verifying the installation After installation, you should be able to run: ```python import subsetmask as sm ```