When I try to run PenguinTV I get this error message:
/usr/bin/PenguinTV
/usr/bin/PenguinTV:34: DeprecationWarning: raising a string exception is deprecated
raise "FileNotFoundError", "couldn't find penguintv library dir"
Traceback (most recent call last):
File "/usr/bin/PenguinTV", line 36, in <module>
sys.path.insert(0, find_penguintv_lib())
File "/usr/bin/PenguinTV", line 34, in find_penguintv_lib
raise "FileNotFoundError", "couldn't find penguintv library dir"
FileNotFoundError: couldn't find penguintv library dir
I installed the Dapper .deb file (on a Feisty installation). The installation went just fine. It's just that I'm unable to get it to run.
Apparently the environment setting PENGUINTV_LIB isn't set up in Dapper's penguintv deb-file.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When I try to run PenguinTV I get this error message:
/usr/bin/PenguinTV
/usr/bin/PenguinTV:34: DeprecationWarning: raising a string exception is deprecated
raise "FileNotFoundError", "couldn't find penguintv library dir"
Traceback (most recent call last):
File "/usr/bin/PenguinTV", line 36, in <module>
sys.path.insert(0, find_penguintv_lib())
File "/usr/bin/PenguinTV", line 34, in find_penguintv_lib
raise "FileNotFoundError", "couldn't find penguintv library dir"
FileNotFoundError: couldn't find penguintv library dir
I installed the Dapper .deb file (on a Feisty installation). The installation went just fine. It's just that I'm unable to get it to run.
Apparently the environment setting PENGUINTV_LIB isn't set up in Dapper's penguintv deb-file.
after loading that environment setting, when trying to run PenguinTV, I get this error message:
$ PenguinTV
Traceback (most recent call last):
File "/usr/bin/PenguinTV", line 38, in <module>
import penguintv
ImportError: No module named penguintv
I know that Feisty and Dapper aren't always interchangeable, so that could be the case here too... I have no way of knowing that for sure.
Feisty uses python 2.5 instead of python 2.4. You need to do something like this:
sudo mv /usr/lib/python2.4/site-packages/penguintv /usr/lib/python2.5/site-packages/
so that the libraries are installed in the correct location