Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 610 Bytes

DEVELOP.md

File metadata and controls

36 lines (26 loc) · 610 Bytes

Setting up development environment

  1. You can use Python venv or virtualenv 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
  1. Clone the PipeRider repo
git clone git@github.com:InfuseAI/piperider.git
cd piperider  
  1. Install dependencies
pip install -r requirements.txt

# Or using Makefile to install dependencies
make
  1. Run the PipeRider CLI
piperider init