原因源头
- stackoverflow
- his is because the default seccomp profile of Docker 20.10.9 is not adjusted to support the clone() syscall wrapper of glibc 2.34 adopted in Ubuntu 21.10 and Fedora 35.
- 由于docker 版本与最新版 python 容器冲突导致
解决方案
- 以下三种方式都可以解决
- 升级Docker 到 23.0.0 以上版本
- 修改python 镜像带有bullseye,例如 python:3.8-bullseye
- 安装时,去除进度条显示
- pip install --progress-bar off -r requirements.txt #一次性操作
- pip config --user set global.progress_bar off # 永久操作
文章来源地址https://www.toymoban.com/news/detail-851817.html
文章来源:https://www.toymoban.com/news/detail-851817.html
到了这里,关于在docker中运行 pip 报错 Can‘t start new thread的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!