当前位置: 首页 > 工具软件 > py2deb > 使用案例 >

树莓派docker运行Python报错问题解决 Fatal Python error: _Py_InitializeMainInterpreter: can‘t initialize time

司空凌
2023-12-01

树莓派 Raspberry Pi 3B+

docker 运行 python 的 Django 框架写的项目

发现运行

docker run

之后无法访问服务

所以使用命令

docker logs

查看发现报错

Fatal Python error: _Py_InitializeMainInterpreter: can't initialize time
PermissionError: [Errno 1] Operation not permitted
Current thread 0x76f8f390 (most recent call first):

解决方案

升级libseccomp2,通过一下命令安装:

wget http://mirrors.ustc.edu.cn/debian/pool/main/libs/libseccomp/libseccomp2_2.5.3-2_armhf.deb
dpkg -i libseccomp2_2.5.3-2_armhf.deb




参考资料
[1] libseccomp简介http://blog.fpliu.com/it/software/libseccomp

[2] 其他关于以上问题的线索https://github.com/jonaswinkler/paperless-ng/issues/1098
https://github.com/TandoorRecipes/recipes/issues/447

 类似资料: