-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question]: ModuleNotFoundError: No module named 'llama_index.core' #11650
Comments
@Vishu611 Seems your env is a tad corrupted, v0.10.x had some major changes, any remnants of a previous install in your env will cause issues. Start with a fresh venv. In a new terminal
|
@logan-markewich , Thanks this worked now! Not sure why it failed when i did the exact same thing the last time. I was also wondering can we use the llama index cli like below on the .ipynb files? : llamaindex-cli upgrade-file <file_path> |
Based on the context provided, it seems like you're encountering a
Additionally, consider starting with a fresh virtual environment: pip uninstall llama-index # Remove any global install
python -m venv venv
source venv/bin/activate
pip install llama-index If the issue still persists, you can try the following solutions that were suggested in similar issues:
Regarding your question about using the 'llamaindex-cli upgrade-file <file_path>' command on .ipynb files, yes, it is possible. The I hope this helps! If you have any more questions or need further clarification, feel free to ask. Sources
|
am getting this 'ModuleNotFoundError' when using the code
|
Question Validation
Question
I have been using llama index for quite a while, when i tried to load my environment today i get the error. I have the lastest verion v0.10.15
ModuleNotFoundError: No module named 'llama_index.core'
I tried to downgrade the version , still get the same error.
The text was updated successfully, but these errors were encountered: