Installation Guide

Prerequisites

SpectroChemPy requires Python 3.11 or higher (tested up to 3.14). Python is a widely-adopted scientific programming language, particularly suited for data analysis and scientific computing.

Installing Python

Installation Steps

  1. Download your chosen package manager

  2. Run the installer for your platform

  3. Open a terminal/command prompt

  4. Verify the installation:

conda --version  # or mamba --version

Alternative Installation Methods

Using Homebrew:

# Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

# Install Python
brew install python

# Verify installation
python3 --version

Using Official Installer:

Installing SpectroChemPy

Create Environment

First, create and activate a dedicated environment:

# Using conda/mamba
mamba create -n scpy python=3.13
mamba activate scpy

# OR using venv (if not using conda/mamba)
python -m venv scpy
source scpy/bin/activate  # On Windows: scpy\Scripts\activate

Install Package

mamba install -c spectrocat spectrochempy

Additional Resources

For more detailed instructions and alternative installation methods: