Skip to content
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

ERROR on launch: No module named 'duckduckgo_search' #71

Closed
neverSettles opened this issue Jul 15, 2023 · 2 comments
Closed

ERROR on launch: No module named 'duckduckgo_search' #71

neverSettles opened this issue Jul 15, 2023 · 2 comments

Comments

@neverSettles
Copy link

After installing requirements in a fresh environment and running uvicorn main:app --reload I run into the error:

ModuleNotFoundError: No module named 'duckduckgo_search'

Full output:

gpt-researcher % uvicorn main:app --reload
INFO:     Will watch for changes in these directories: ['/Users/christophersettles/code/gpt-researcher']
INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
INFO:     Started reloader process [70521] using WatchFiles
Process SpawnProcess-1:
Traceback (most recent call last):
  File "/Users/christophersettles/anaconda3/lib/python3.10/multiprocessing/process.py", line 314, in _bootstrap
    self.run()
  File "/Users/christophersettles/anaconda3/lib/python3.10/multiprocessing/process.py", line 108, in run
    self._target(*self._args, **self._kwargs)
  File "/Users/christophersettles/anaconda3/lib/python3.10/site-packages/uvicorn/_subprocess.py", line 76, in subprocess_started
    target(sockets=sockets)
  File "/Users/christophersettles/anaconda3/lib/python3.10/site-packages/uvicorn/server.py", line 61, in run
    return asyncio.run(self.serve(sockets=sockets))
  File "/Users/christophersettles/anaconda3/lib/python3.10/asyncio/runners.py", line 44, in run
    return loop.run_until_complete(main)
  File "uvloop/loop.pyx", line 1517, in uvloop.loop.Loop.run_until_complete
  File "/Users/christophersettles/anaconda3/lib/python3.10/site-packages/uvicorn/server.py", line 68, in serve
    config.load()
  File "/Users/christophersettles/anaconda3/lib/python3.10/site-packages/uvicorn/config.py", line 473, in load
    self.loaded_app = import_from_string(self.app)
  File "/Users/christophersettles/anaconda3/lib/python3.10/site-packages/uvicorn/importer.py", line 24, in import_from_string
    raise exc from None
  File "/Users/christophersettles/anaconda3/lib/python3.10/site-packages/uvicorn/importer.py", line 21, in import_from_string
    module = importlib.import_module(module_str)
  File "/Users/christophersettles/anaconda3/lib/python3.10/importlib/__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1006, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "/Users/christophersettles/code/gpt-researcher/main.py", line 8, in <module>
    from agent.run import WebSocketManager
  File "/Users/christophersettles/code/gpt-researcher/agent/run.py", line 7, in <module>
    from agent.research_agent import ResearchAgent
  File "/Users/christophersettles/code/gpt-researcher/agent/research_agent.py", line 6, in <module>
    from actions.web_search import web_search
  File "/Users/christophersettles/code/gpt-researcher/actions/web_search.py", line 3, in <module>
    from duckduckgo_search import DDGS
ModuleNotFoundError: No module named 'duckduckgo_search'
@neverSettles
Copy link
Author

The issue was I was running python 3.10 and not 3.11. I created an environment with
conda create -n envname python=3.11

@RajveerRall
Copy link

I'm facing the same issue. I'm using Windows 11. I've python 3.11 and PyCharm IDE. I also tried it with VSC but still go the same error. The duckduckgo search library is installed but still it's not able to find it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants