## Objective To successfully install Python and NLTK, and perform basic text analysis using NLTK tools. ## Tasks 1. **Install Python & Pipenv:** - If you type `which python` in your terminal and you don't have any python: - Visit [Python.org](https://python.org) and download the latest version of Python. - Follow the on-screen instructions to install Python on your system. - After that, install pipenv to manage your environments - `brew install pipenv` and `pipenv shell` in your terminal 3. **Install NLTK:** - Open your terminal or command prompt. - Run the command: `pip install nltk` 4. **Download NLTK Data:** - In your Python IDE or a Python script, run the following commands: ```python import nltk nltk.download() ``` - A window will open. Select the 'book' package and download it. 4. **Basic Text Analysis:** - Run the following commands in your Python environment: ```python from nltk.book import * text1.concordance("monstrous") ``` - Observe the output and understand how NLTK finds occurrences of the word "monstrous" in the text.