-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Yasser Mustafa edited this page Feb 15, 2026
·
1 revision
- Python 3.8 or higher
- pip (Python package manager)
Install PipeFrame using pip:
pip install pipeframeThat's it! You're ready to use PipeFrame.
import pipeframe
print(pipeframe.__version__) # Should print: 0.2.0PipeFrame supports optional features through extra dependencies:
pip install pipeframe[excel]Includes: openpyxl, xlrd
pip install pipeframe[parquet]Includes: pyarrow
pip install pipeframe[sql]Includes: sqlalchemy
pip install pipeframe[plot]Includes: matplotlib, seaborn, plotnine
pip install pipeframe[all]For contributing to PipeFrame:
# Clone the repository
git clone https://github.com/Yasser03/pipeframe.git
cd pipeframe
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install in editable mode with dev dependencies
pip install -e ".[dev,test]"To upgrade to the latest version:
pip install --upgrade pipeframepip uninstall pipeframeIf you get an import error, make sure pipeframe is installed:
pip list | grep pipeframeIf you have dependency conflicts, try creating a fresh virtual environment:
python -m venv fresh_env
source fresh_env/bin/activate
pip install pipeframeOn Windows, if you encounter path issues, try:
python -m pip install pipeframe- Quick Start Guide - Learn the basics
- Examples - See PipeFrame in action
- API Reference - Explore all functions