2014-03-26 35 views
0

我按照this guide,并征求这些现有的计算器问题:又一pymacs助手没有在30秒内启动(但更多的调试)

但不幸的是,这些都没有解决我的问题。所以,我在这个问题上发布了更多关于我的错误的细节。

根据emacs提供的调试信息,我运行了--debug-init,这里是结果。

Debugger entered--Lisp error: (error "Pymacs helper did not start within 30 seconds") 
    signal(error ("Pymacs helper did not start within 30 seconds")) 
    pymacs-report-error("Pymacs helper did not start within %d seconds" 30) 
    pymacs-start-services() 
    pymacs-serve-until-reply("eval" (pymacs-print-for-apply (quote "pymacs_load_helper") (quote ("ropemacs" "rope-" nil)))) 
    pymacs-call("pymacs_load_helper" "ropemacs" "rope-" nil) 
    pymacs-load("ropemacs" "rope-") 
    eval-buffer(#<buffer *load*> nil "/home/mittenchops/.emacs.d/init.el" nil t) ; Reading at buffer position 1936 
    load-with-code-conversion("/home/mittenchops/.emacs.d/init.el" "/home/mittenchops/.emacs.d/init.el" t t) 
    load("/home/mittenchops/.emacs.d/init" t t) 
    #[0 "\205\262 

我的init.el链接到here

我已经安装了绳索,ropemacs,pymacs等,但我仍然收到此错误。我还发现,pymacs似乎是不成功被进口的蟒蛇一般:

>>> import Pymacs 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
ImportError: No module named Pymacs 

但是,这是奇怪的,因为:

$ git clone https://github.com/pinard/Pymacs.git 
$ sudo pip install -e Pymacs 

安装成功!

回答

1

啊,没关系,我忘了建立回购。

$ python setup.py build 
$ python setup.py install 
相关问题