Skip to main content

Quick Install

# Clone repository
git clone https://github.com/CFARS/TACT.git
cd TACT

# Create virtual environment
python3 -m venv env
source env/bin/activate  # Windows: env\Scripts\activate

# Install dependencies
pip install -r requirements.txt

# Verify installation
python -c "from tact import TACT; print('TACT installed successfully')"

Installation Options

For running example scripts in the TACT directory
git clone https://github.com/CFARS/TACT.git
cd TACT
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
python main.py  # Run example
Use this if you just want to run the provided examples or work within the TACT directory.

System Requirements

  • Python 3.8 or higher
  • pip (Python package manager)
  • Git
  • 500MB disk space

Dependencies

TACT requires standard scientific Python packages:
  • numpy
  • pandas
  • scikit-learn
  • scipy
  • matplotlib
These are automatically installed with pip install -r requirements.txt.

Verification

Test your installation:
# Activate environment
source env/bin/activate

# Test import
python -c "from tact import TACT; print('Success!')"

# Run example
python main.py

Next Steps