I am completely new to both Linux/GNU and Ubuntu, and I might be incredibly dense, but I have not been able to download and install Panucci audio player for gPodder. I tried cloning the GitHub repository (https://github.com/gpodder/panucci) and running the setup.py-file but to no avail. I then tried downloading the .install-file from this page http://maemo.org/downloads/product/Maemo5/panucci/, but I couldn't find out how to run it.
The solution is probably very simple, but I have spent way too much time trying to find it out.
Edit: This is the result of trying to use make install
(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
Edit 2: Turned out python wasn't installed correctly, and I apparently needed to install gettext. This is what I did, and it compiled:
$ sudo apt-get install python
$ sudo apt-get install gettext
$ make
$ sudo make install
This had to be done in the terminal opened from within the directory, not in one opened with "Ctrl+Alt+T". I did this by right-clicking an empty space in the directory and pressing "Open in Terminal".
My apparently last problem is now that the program won't launch. When pressing the icon in the GUI it simply does nothing, and when trying to run the executable from /usr/bin
it yields this:
(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
It appears the python executable tries to import a module named panucci
which does not exist.
0 Answers