我正在尝试将一个项目部署到scrapinghub,下面是我得到的错误
slackclient 1.3.2 has requirement websocket-client<0.55.0,>=0.35, but you have websocket-client 0.57.0.
Warning: Pip checks failed, please fix the conflicts.
WARNING: There're some errors when doing pip-check:
WARNING: The scripts pip, pip3 and pip3.8 are installed in '/app/python/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
{"message": "Dependencies check exit code: 1", "details": "Pip checks failed, please fix the conflicts", "error": "requirements_error"}
{"status": "error", "message": "Requirements error"}
Deploy log location: /var/folders/p7/nwmq6_4138n6t3w2spdnpzfm0000gn/T/shub_deploy_5l9k3_nm.log
Error: Deploy failed: b'{"status": "error", "message": "Requirements error"}'我不知道怎么才能找到日志文件?
发布于 2020-11-13 19:14:30
我最近遇到了这个问题,原因是我在dash上使用的堆栈需要特定的旧版本的包,这些包是我需求中的包的依赖项。
一个不错的第一步是尝试安装旧版本的websocket-client。如果slackclient 1.3.2可以在旧版本上运行,你就很好,否则你可能也需要尝试回滚slackclient。
https://stackoverflow.com/questions/61822730
复制相似问题