Install

Woodwork is available for Python 3.6, 3.7, and 3.8. It can be installed from PyPI, conda, or from source.

PyPI

To install Woodwork from PyPI, run the following command:

python -m pip install woodwork

Woodwork allows users to install add-ons individually or all at once. In order to install all add-ons, run:

python -m pip install "woodwork[complete]"

You can use Woodwork to create Dask DataTables by running:

python -m pip install "woodwork[dask]"

Conda

To install Woodwork from conda run the following command:

conda install -c conda-forge woodwork

Note

In order to create Dask DataTables, the following command must be run prior to installing Woodwork with conda: conda install dask

Source

To install Woodwork from source, clone the repository from Github, and install the dependencies.

git clone https://github.com/FeatureLabs/woodwork.git
cd woodwork
python -m pip install .
  • You can view the list of all dependencies in the requirements.txt file.

Development

To make contributions to the codebase, please follow the guidelines here.