- You can use Python
venv
orvirtualenv
to setup the environment of development PipeRider.
# Use venv
python -m venv .venv
source .venv/bin/activate
# Use virtualenv
pip install virtualenv
virtualenv .venv
source .venv/bin/activate
- Clone the PipeRider repo
git clone git@github.com:InfuseAI/piperider.git
cd piperider
- Install dependencies
pip install -r requirements.txt
# Or using Makefile to install dependencies
make
- Run the PipeRider CLI
piperider init