0


在docker中运行 pip 报错 Can‘t start new thread

原因源头

  • 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 容器冲突导致

解决方案

  • 以下三种方式都可以解决
  1. 升级Docker 到 23.0.0 以上版本
  2. 修改python 镜像带有bullseye,例如 python:3.8-bullseye
  3. 安装时,去除进度条显示 1. pip install --progress-bar off -r requirements.txt #一次性操作2. pip config --user set global.progress_bar off # 永久操作
标签: docker pip 容器

本文转载自: https://blog.csdn.net/weixin_42290927/article/details/136317563
版权归原作者 少年的小俊 所有, 如有侵权,请联系我们删除。

“在docker中运行 pip 报错 Can‘t start new thread”的评论:

还没有评论