2014-03-26 33 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 
相關問題