Mendeley最近从桌面版本转移到"Mendeley参考管理器“。
链接:https://www.mendeley.com/download-reference-manager/
它下载一个AppImage文件。我使该文件可执行:
chmod a+x mendeley-reference-manager-2.77.0-x86_64.AppImage 然后尝试安装它:
./mendeley-reference-manager-2.77.0-x86_64.AppImage 这会产生以下错误:
(node:13441) ProtocolDeprecateCallback: The callback argument of protocol module APIs is no longer needed.
[13441:0901/105344.492139:FATAL:gpu_data_manager_impl_private.cc(445)] GPU process isn't usable. Goodbye.
Trace/breakpoint trap (core dumped)使用"sudo“进行安装会出现以下错误:
[13592:0901/105501.308639:FATAL:electron_main_delegate.cc(253)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
Trace/breakpoint trap有什么帮助吗?格特·克鲁格
发布于 2022-11-08 06:53:49
一些打包为AppImages的电子应用程序拒绝启动,除非在执行AppImage时传递某些标志。
在Mendeley的情况下,您需要附加以下铬标志。
./mendeley-reference-manager-2.80.1-x86_64.AppImage --no-sandbox发布于 2023-05-10 02:18:23
如果看不到应用程序,只需使用--no-sandbox标志即可。由于有些应用程序是不可执行的,除非给出此标志,所以R以前也会发生同样的情况,只有在给出"--no-sandbox“标志时才能工作。但是run的当前版本已经修复了这个bug,并且在没有此标志的情况下运行。同样,门德利也必须尽快着手解决这个问题。
当前版本的
./mendeley-reference-manager-2.80.1-x86_64.AppImage --no-sandbox只使用相应的版本号--例如,./mendeley-reference-manager-2.89.0-x86_64.AppImage --no-sandbox
否则,您可以始终使用来自门德利桌面的桌面版本,这对于Linux (64位)来说是1.19.5版。,它从目录的终端./bin/mendeleydesktop运行代码
https://askubuntu.com/questions/1426894
复制相似问题