How to install Py-Feat
Contents
How to install Py-Feat¶
Basic setup¶
You can either install the latest stable version from Pypi using:
pip install py-feat
Or get the latest development version by installing directly from github:
pip install git+https://github.com/cosanlab/py-feat.git
Using Google Colab¶
On any page in these docs, you can you can simply click on badges you see to open that page in Google Colab.
Note
Make sure to add and run !pip install py-feat
as the first cell into the Colab notebook before running any other code!
Development setup¶
If you plan on contributing to py-feat then you might want to install an editable version so that any changes you make to source files are automatically reflected:
git clone https://github.com/cosanlab/py-feat.git
cd py-feat
pip install -e .
pip install -r requirements-dev.txt