### Download example corpus Source: https://github.com/fastdatascience/faststylometry/blob/main/Burrows Delta Walkthrough.ipynb Download the example corpus from Project Gutenberg. Ensure the 'data/train' folder is empty or renamed if you want to re-download. ```python download_examples() ``` -------------------------------- ### Install and Run Tox Locally Source: https://github.com/fastdatascience/faststylometry/blob/main/README.md Installs tox and runs it to check the source distribution. Requires the repository to be git-initialized and files added. ```bash pip install tox tox ``` -------------------------------- ### Install Fast Stylometry Source: https://github.com/fastdatascience/faststylometry/blob/main/README.md Install the Fast Stylometry Python package using pip. This command fetches the latest version from PyPI. ```bash pip install faststylometry ``` -------------------------------- ### Install FastStylometry Source: https://github.com/fastdatascience/faststylometry/blob/main/Burrows Delta Walkthrough.ipynb Installs the faststylometry library version 1.0.15. This may trigger dependency warnings or errors if existing packages conflict. ```python !pip install faststylometry==1.0.15 ``` -------------------------------- ### Download Example Data Source: https://github.com/fastdatascience/faststylometry/blob/main/README.md Import the download_examples function from faststylometry to fetch sample Project Gutenberg texts for use with the library. ```python from faststylometry import download_examples download_examples() ```