You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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'
The text was updated successfully, but these errors were encountered:
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.
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:
The text was updated successfully, but these errors were encountered: