我一直在尝试fpdb
在我的 Ubuntu 桌面上运行它,但每次我尝试从 Gz 文件安装它时,我的系统都不会让我使用./configure
(说文件未找到),而当我尝试从 DEB 文件安装它时,我得到
spencer@spencer-System-Product-Name:~$ fpdb
Python 2.7...
Traceback (most recent call last):
File "/usr/bin/fpdb", line 85, in <module>
import DetectInstalledSites
File "/usr/share/pyshared/fpdb/DetectInstalledSites.py", line 47, in <module>
Config=Configuration.Config()
File "/usr/share/pyshared/fpdb/Configuration.py", line 805, in __init__
game = Game(node = game_node)
File "/usr/share/pyshared/fpdb/Configuration.py", line 397, in __init__
self.rows = int( node.getAttribute("rows") )
ValueError: invalid literal for int() with base 10: ''
我是一个新手,所以你知道有什么可以帮助我正确安装fpdb
吗?
fpdb
另外,我无法在任何地方找到有关在 Ubuntu 上安装的安装手册。
此外,每当我运行该run_fpdb.py
文件时,我都会得到:
['matplotlib/gtk', 'File not found: pylab', 'File not found: BeautifulSoup', 'File not found: wnck']
有人知道我是否缺少某些存储库或文件,或者我是否需要调整某些内容才能安装fpdb
?
答案1
关于BeautifulSoup
和wnck
,我通过安装这两个包解决了这个问题:
sudo apt-get install python-beautifulsoup
sudo apt-get install python-wnck
我没有收到matplotlib/gtk
和的错误pylab
,但我猜那是因为我已经安装了列出的 Python 软件包这之前的 wiki 页面。