Installation ============ Regular Installation ------------------ You can install finpie using pip: .. code-block:: bash pip install finpie Development Setup --------------- 1. Create a virtual environment: .. code-block:: bash # Windows python -m venv venv # Linux/MacOS python3 -m venv venv 2. Activate the virtual environment: .. code-block:: bash # Windows .\venv\Scripts\activate # Linux/MacOS source venv/bin/activate 3. Install in development mode: .. code-block:: bash # 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]"