MetaPulsar Installation Guide

Prerequisites

  • Python 3.8+

  • Git

  • scipy and numpy (assumed to be installed)

Installation

From PyPI (Future)

Once published:

pip install metapulsar

Verification

Test your installation:

import metapulsar
print(metapulsar.__version__)

Development Setup

For contributing to MetaPulsar:

  1. Clone and install:

    git clone https://github.com/vhaasteren/metapulsar.git
    cd metapulsar
    pip install -e ".[dev]"
    
  2. Run tests:

    make test
    
  3. Run linting:

    make lint
    

Troubleshooting

Common Issues

  1. Import errors: Ensure you’re in the correct Python environment

  2. Missing dependencies: Install optional dependencies as needed

  3. Permission errors: Use --user flag with pip if needed

For more help, see the troubleshooting guide.