Log in
Log into community
Find answers from the community
View all posts
Related posts
Did this answer your question?
😞
😐
😃
Powered by
Hall
Inactive
Updated 9 months ago
0
Follow
I get an error while importing run_jobs
I get an error while importing run_jobs
Inactive
0
Follow
É
Émi
9 months ago
·
I get an error while importing run_jobs module from llamaindex I think there is an update if anyone can help or have any idea about that issue
L
É
11 comments
Share
Open in Discord
L
Logan M
9 months ago
What is the error? Usually import errors are solved by starting with a fresh venv
É
Émi
9 months ago
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-24-a1d2b32091ce> in <cell line: 2>()
1 from llama_index.core import SimpleDirectoryReader
----> 2 from llama_index.async_utils import run_jobs
3
4
5 async def aprocess_image_file(image_file):
ModuleNotFoundError: No module named 'llama_index.async_utils'
É
Émi
9 months ago
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the
"Open Examples" button below.
É
Émi
9 months ago
Here is the error I got @Logan M
L
Logan M
9 months ago
it should be
from llama_index.core.async_utils import run_jobs
É
Émi
9 months ago
Yes I think that's the same import statement that triggered that issue
L
Logan M
9 months ago
You had
from llama_index.async_utils import run_jobs
in your traceback
L
Logan M
9 months ago
It should be
from llama_index.core.async_utils import run_jobs
L
Logan M
9 months ago
Notice the
core
in there
É
Émi
9 months ago
Aah ok you are right I will test it
É
Émi
9 months ago
Thank youu so much
Add a reply
Sign up and join the conversation on Discord
Join on Discord