-
Notifications
You must be signed in to change notification settings - Fork 173
Development Setup
Eric Ma edited this page May 6, 2019
·
1 revision
tl;dr for experienced users:
- Fork repository and clone fork locally.
- Switch to default branch,
dev
. - Create new virtual environment that houses dependencies:
-
conda
recommended:conda env create -f environment-dev.yml
conda activate pyjanitor-dev
python setup.py develop
-
venv
also possible. I don't know exact commands, but definitely installing everything inenvironment-dev.yml
should be correct.
-
- Create new feature branch!
- Hack away!