ImportError: cannot import name 'LlamaIndex' from 'llama_index'

1.5k Views Asked by At

while executing the following line of code in python

from llama_index import LlamaIndex

I am keep getting ImportError, how to rectify it. Error: ImportError: cannot import name 'LlamaIndex' from 'llama_index'

I tried the code in both jupyter notebook and google colab, I can't rectify it I am trying to execute following function

def remove_pii(text):

    llama = LlamaIndex()

    redacted_text = llama.redact(text)

    return redacted_text

I can't impoet LlamaIndex

1

There are 1 best solutions below

2
On

Did you install Llama index using PIP ?? if not then in cmd use:

pip install llama-index