When running docker build - I get:
Step 4/7 : RUN pip install --no-cache-dir -r requirements.txt
---> Running in 1a4063e60aaf
ERROR: Ignored the following versions that require a different python version: 0.12.10 Requires-Python >=3.11; 0.12.11 Requires-Python >=3.11; 0.12.12 Requires-Python >=3.11; 0.12.14 Requires-Python >=3.11; 0.12.16 Requires-Python >=3.11; 0.12.17 Requires-Python >=3.11; 0.12.18 Requires-Python >=3.11; 0.12.19 Requires-Python >=3.11; 0.12.4 Requires-Python >=3.11; 0.12.5 Requires-Python >=3.11; 0.12.6 Requires-Python >=3.11; 0.12.7 Requires-Python >=3.11; 0.12.8 Requires-Python >=3.11; 0.12.9 Requires-Python >=3.11
ERROR: Could not find a version that satisfies the requirement gpt-researcher>=0.12.16 (from versions: 0.2.2, 0.2.4, 0.2.5, 0.2.6, 0.2.7, 0.2.8, 0.2.9, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9, 0.7.0, 0.7.1, 0.8.0, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.8.5, 0.8.6, 0.8.7, 0.8.8, 0.9.0, 0.9.1, 0.9.2, 0.9.3, 0.9.4, 0.9.5, 0.9.6, 0.9.7, 0.9.8, 0.9.9, 0.10.2, 0.10.3, 0.10.4, 0.10.5, 0.10.6, 0.10.7, 0.10.8, 0.10.9, 0.10.10, 0.10.11, 0.11.0, 0.11.1, 0.11.2, 0.11.3, 0.11.4, 0.11.5, 0.11.6, 0.11.7, 0.11.8, 0.11.9, 0.12.0, 0.12.1, 0.12.2, 0.12.3)
ERROR: No matching distribution found for gpt-researcher>=0.12.16
[notice] A new release of pip is available: 23.0.1 -> 25.0.1
[notice] To update, run: pip install --upgrade pip
If I change to use a new base image for Docker I get it built - but running gets stuck with
docker run -it --rm --name gptr-mcp --env-file .env -p 8088:8088 -v /data/temp/gptr-mcp/data:/app/logs gptr-mcp
2025-04-22 12:28:44,229 - main - INFO - Starting GPT Researcher MCP Server...
🚀 GPT Researcher MCP Server starting... Check researcher_mcp_server.log for details
no progress just sits there
Thanks
When running docker build - I get:
Step 4/7 : RUN pip install --no-cache-dir -r requirements.txt
---> Running in 1a4063e60aaf
ERROR: Ignored the following versions that require a different python version: 0.12.10 Requires-Python >=3.11; 0.12.11 Requires-Python >=3.11; 0.12.12 Requires-Python >=3.11; 0.12.14 Requires-Python >=3.11; 0.12.16 Requires-Python >=3.11; 0.12.17 Requires-Python >=3.11; 0.12.18 Requires-Python >=3.11; 0.12.19 Requires-Python >=3.11; 0.12.4 Requires-Python >=3.11; 0.12.5 Requires-Python >=3.11; 0.12.6 Requires-Python >=3.11; 0.12.7 Requires-Python >=3.11; 0.12.8 Requires-Python >=3.11; 0.12.9 Requires-Python >=3.11
ERROR: Could not find a version that satisfies the requirement gpt-researcher>=0.12.16 (from versions: 0.2.2, 0.2.4, 0.2.5, 0.2.6, 0.2.7, 0.2.8, 0.2.9, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9, 0.7.0, 0.7.1, 0.8.0, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.8.5, 0.8.6, 0.8.7, 0.8.8, 0.9.0, 0.9.1, 0.9.2, 0.9.3, 0.9.4, 0.9.5, 0.9.6, 0.9.7, 0.9.8, 0.9.9, 0.10.2, 0.10.3, 0.10.4, 0.10.5, 0.10.6, 0.10.7, 0.10.8, 0.10.9, 0.10.10, 0.10.11, 0.11.0, 0.11.1, 0.11.2, 0.11.3, 0.11.4, 0.11.5, 0.11.6, 0.11.7, 0.11.8, 0.11.9, 0.12.0, 0.12.1, 0.12.2, 0.12.3)
ERROR: No matching distribution found for gpt-researcher>=0.12.16
[notice] A new release of pip is available: 23.0.1 -> 25.0.1
[notice] To update, run: pip install --upgrade pip
If I change to use a new base image for Docker I get it built - but running gets stuck with
docker run -it --rm --name gptr-mcp --env-file .env -p 8088:8088 -v /data/temp/gptr-mcp/data:/app/logs gptr-mcp
2025-04-22 12:28:44,229 - main - INFO - Starting GPT Researcher MCP Server...
🚀 GPT Researcher MCP Server starting... Check researcher_mcp_server.log for details
no progress just sits there
Thanks