我已经通过easy_install在我的网络共享主机上安装了拉姆森。去做“30秒简介”(见http://lamsonproject.org/docs/getting_started.html),但之后:
[almacmillan@web129 python2.6]$ lamson gen -project mymailserver我得到了:
Traceback (most recent call last):
File "/home/almacmillan/bin/lamson", line 5, in <module>
pkg_resources.run_script('lamson==1.0', 'lamson')
File "/usr/local/lib/python2.6/site-packages/pkg_resources.py", line 448, in run_script
self.require(requires)[0].run_script(script_name, ns)
File "/usr/local/lib/python2.6/site-packages/pkg_resources.py", line 1166, in run_script
execfile(script_filename, namespace, namespace)
File "/home/almacmillan/lib/python2.6/lamson-1.0-py2.6.egg/EGG-INFO/scripts/lamson", line 3, in <module>
from lamson import args, commands
File "/home/almacmillan/lib/python2.6/lamson-1.0-py2.6.egg/lamson/commands.py", line 28, in <module>
from lamson import server, args, utils, mail, routing, queue, encoding
File "/home/almacmillan/lib/python2.6/lamson-1.0-py2.6.egg/lamson/utils.py", line 12, in <module>
from daemon import pidlockfile
File "/home/almacmillan/lib/python2.6/python_daemon-1.5.5-py2.6.egg/daemon/pidlockfile.py", line 33, in <module>
class PIDLockFile(LinkFileLock, object):
TypeError: Error when calling the metaclass bases
function() argument 1 must be code, not str我是一个非常新的程序员。我真的很感谢一些调试方面的帮助。
发布于 2010-10-07 03:47:14
这里已经有了解决这个问题的方法:http://support.lamsonproject.org/tktview?name=06d488141d
使用http://pypi.python.org/pypi/lockfile/0.8作为0.9.1的API更改break python_daemon-1.5.5-py2.5.egg/daemon/pidlockfile.py.0.9.1随easy_install一起提供。所以,这不是lamson的问题。
解决方法:从Python站点包中删除lockfile 0.9.1,并从奶酪商店获取0.8。
https://stackoverflow.com/questions/3874771
复制相似问题