# Misssing module mitie

**URL:** https://forum.rasa.com/t/misssing-module-mitie/47238
**Category:** Rasa Open Source
**Created:** [August 26, 2021, 12:05pm UTC](https://forum.rasa.com/t/misssing-module-mitie/47238 "2021-08-26T12:05:07Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![tanayraj](https://avatars.discourse-cdn.com/v4/letter/t/cc9497/32.png) [@tanayraj](https://forum.rasa.com/u/tanayraj)
#### Post date: [August 26, 2021, 12:05pm UTC](https://forum.rasa.com/t/misssing-module-mitie/47238/1 "2021-08-26T12:05:07Z")

</div>

I am trying entity extraction. for that, I added `MitieEntityExtractor` in my pipeline. As per the rasa document, to use `MitieEntityExtractor MitieNLP` is required. So I as per the document I install

```auto
pip3 install git+https://github.com/mit-nlp/MITIE.git

pip3 install rasa[mitie]

```

mitin using the above commands. After that add mitin in my pipeline like this:

```auto
- name: "MitieNLP"

    model: "data/total_word_feature_extractor.dat"

  - name: DIETClassifier

  - name: "MitieEntityExtractor"

  - name: RegexEntityExtractor

    use_lookup_tables: True

    use_regexes: True

  - name: WhitespaceTokenizer

  - name: RegexFeaturizer

```

So now when I try to train my model it throwing me errors, like these:

```auto
MissingDependencyException: Not all required importable packages are installed to use the configured NLU pipeline. To use this pipeline, you need to install the missing modules:
  - mitie (needed for MitieNLP, MitieEntityExtractor)
Please install the packages that contain the missing modules.

```

Can anyone tell me what wrongs with my setup?

 ![image](https://europe1.discourse-cdn.com/flex013/uploads/rasa/original/3X/9/4/94e43a020eeea3f1f179cdf6cfdafa4380684984.png)
