rasbt / mlxtend

A library of extension and helper modules for Python's data analysis and machine learning libraries.
https://rasbt.github.io/mlxtend/
Other
4.83k stars 855 forks source link

Update contributor guide regarding setup.py develop #931

Open rasbt opened 2 years ago

rasbt commented 2 years ago

I think the more modern version of

python setup.py develop

is

pip install -e .

The contributor guide should probably be updated with

pip install -r requirements.txt
pip install -e .