Installation
Regular Installation
You can install finpie using pip:
pip install finpie
Development Setup
Create a virtual environment:
# Windows python -m venv venv # Linux/MacOS python3 -m venv venv
Activate the virtual environment:
# Windows .\venv\Scripts\activate # Linux/MacOS source venv/bin/activate
Install in development mode:
# Install in development mode with all dependencies pip install -e . # Install with development tools pip install -e ".[dev]" # Install with notebook support pip install -e ".[notebooks]" # Install with both development tools and notebook support pip install -e ".[dev,notebooks]"