如何安装 Panucci?

如何安装 Panucci?

我对 Linux/GNU 和 Ubuntu 都完全陌生,而且我可能非常笨拙,但我无法下载并安装用于 gPodder 的 Panucci 音频播放器。我尝试克隆 GitHub 存储库 (https://github.com/gpodder/panucci)并运行设置.py-file,但无济于事。然后我尝试下载。安装- 来自此页面的文件http://maemo.org/downloads/product/Maemo5/panucci/,但我不知道如何运行它。

解决方案可能非常简单,但我花了太多时间来寻找它。

编辑:这是尝试使用的结果进行安装

(base) konki@HP-Spectre-x360:~/panucci$ make
make: 'data/panucci.service' is up to date.
(base) konki@HP-Spectre-x360:~/panucci$ sudo make install
[sudo] password for konki: 
for langfile in data/po/*.po; do \
  mo_dir="data/locale/`basename ${langfile} .po`/LC_MESSAGES/"; \
  mkdir -p ${mo_dir}; \
  msgfmt ${langfile} -o ${mo_dir}/panucci.mo; \
done
/bin/sh: 4: msgfmt: not found
/bin/sh: 4: msgfmt: not found
/bin/sh: 4: msgfmt: not found
/bin/sh: 4: msgfmt: not found
/bin/sh: 4: msgfmt: not found
/bin/sh: 4: msgfmt: not found
make: *** [makefile:43: mo] Error 127

编辑 2:结果发现 Python 没有正确安装,显然我需要安装获取文本。这是我做的,并且编译通过:

$ sudo apt-get install python
$ sudo apt-get install gettext
$ make
$ sudo make install

这必须在目录内打开的终端中完成,而不是在使用“Ctrl+Alt+T”打开的终端中完成。我通过右键单击目录中的空白处并按“在终端中打开”来完成此操作。

我最后一个问题似乎是程序无法启动。按下 GUI 中的图标时,它什么也不做,尝试从中运行可执行文件时,/usr/bin会出现以下情况:

(base) konki@HP-Spectre-x360:~$ sudo '/usr/bin/panucci' 
[sudo] password for konki: 
Traceback (most recent call last):
  File "/usr/bin/panucci", line 64, in <module>
    from panucci import main
ImportError: No module named panucci

看起来 Python 可执行文件试图导入一个panucci不存在的模块。

相关内容