python 正在安装qutebrowser-Calling_exit(1).将不会生成核心文件

omtl5h9j  于 2023-06-28  发布在  Python
关注(0)|答案(1)|浏览(89)

运行qutebrowser - Calling _exit(1)

有用信息

python3.5pip3.5默认安装在gallium OS 16.04
我试着在gallium OS上安装qutebrowser。由于操作系统是基于xubuntu的,我遵循了以下步骤:
https://qutebrowser.org/doc/install.html#_ubuntu_16_04_lts_linux_mint_18
我使用pip3.5来安装python程序需要的所有缺少的包。

问题

当我运行qutebrowser使用:

$ python3.5 qutebrowser.py

我得到一个错误:Calling _exit(1). Core file will not be generated
此错误已发布到线程上,但尚未解决:https://github.com/qutebrowser/qutebrowser/issues/3731

h79rfbju

h79rfbju1#

根本问题是:Could not find QtWebEngineProcess
在做了更多的研究之后,我发现了这个链接:
https://github.com/qutebrowser/qutebrowser/issues/3662
这解决了问题:
作为sudoroot

$ pip3.5 uninstall
$ pip3.5 install --user PyQt5==5.10.0 # Do not specify username

相关问题