* Can not install slime for emacs on my windows-7-64
@ 2014-11-26 2:44 ye eugene
2014-11-26 3:06 ` Alexis
0 siblings, 1 reply; 2+ messages in thread
From: ye eugene @ 2014-11-26 2:44 UTC (permalink / raw)
To: help-gnu-emacs
Hello everyone
I download lispbox ( http://commonlisp.net/project/lispbox/
<http://common-lisp.net/project/lispbox/> ) lispstick (
http://www.iqool.de/lispstick.html ) .When i run them on my windows
7-64,they all shows the same error:
Debugger entered: (("Error in timer" slime-attempt-connection (#<process
inferior-lisp> nil 5) (file-error "make client process failed" "too many
open files" :name "SLIME Lisp" :buffer nil :host "127.0.0.1" :service 33947
:nowait nil)))
(condition-case data (apply fun args) ((debug error) (debug nil (list
"Error in timer" fun args data))))
slime-timer-call(slime-attempt-connection #<process inferior-lisp> nil 5)
apply(slime-timer-call (slime-attempt-connection #<process inferior-lisp>
nil 5))
byte-code("r\301 \302H \303H\"\210)\301\207" [timer apply 5 6] 4)
timer-event-handler([t 21620 23714 532000 nil slime-timer-call
(slime-attempt-connection #<process inferior-lisp> nil 5) nil 0])
When I try to add (url-retrieve "http://google.com" 'print) to .emacs and
then run emacs,it shows the error:
Warning (initialization): An error occurred while loading `f:/lisp/.emacs':
File error: make client process failed, too many open files, :name,
google.com, :buffer, #, :host, google.com, :service, 80, :nowait, nil
I asked the author of slime,he said it is not a slime bug.So I want to
know what's the error and how to fix it.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Can not install slime for emacs on my windows-7-64
2014-11-26 2:44 Can not install slime for emacs on my windows-7-64 ye eugene
@ 2014-11-26 3:06 ` Alexis
0 siblings, 0 replies; 2+ messages in thread
From: Alexis @ 2014-11-26 3:06 UTC (permalink / raw)
To: help-gnu-emacs
ye eugene writes:
> Hello everyone
> I download lispbox ( http://commonlisp.net/project/lispbox/
> <http://common-lisp.net/project/lispbox/> ) lispstick (
> http://www.iqool.de/lispstick.html ) .When i run them on my windows
> 7-64,they all shows the same error
Given you had no response to your post last week regarding
Lispbox+Lispstick setup, it looks like there might not be many (or any)
users of Lispbox or Lispstick on this list. Further, it seems that the
problem might not be Emacs itself, but how Lispbox and Lispstick make
use of Emacs. So i think that at this point your best options are
probably either:
(a) Contact the maintainer of Lispstick about your issue; his email
address is listed in section 6 of the Lispstick page.
(b) Don't use either Lispbox or Lispstick, and instead just set up Emacs
with SLIME directly. It seems to me that in trying to avoid work by
using a ready-made setup, you might actually be having to do more work
than you otherwise would. :-)
Here's one way to install SLIME on Emacs:
1. At the start of your .emacs config file, put:
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/") t)
(package-initialize)
2. Start Emacs.
3. Do: M-x package-refresh-contents RET
4. Do: M-x package-install slime RET
SLIME should then be downloaded, installed, loaded, and ready for you to
configure for use.
5. In the *scratch* buffer, put:
(setq inferior-lisp-program "/usr/bin/sbcl")
replacing "/usr/bin/sbcl" with the path to the actual CL implementation
you've installed. Then move the cursor to the end of that line and do: C-x
C-e.
6. Do: M-x slime RET
A SLIME session should now be started. :-)
7. To set up SLIME for future Emacs sessions, add the line you specified
in step 5 to the end of your .emacs.
Hope that helps!
Alexis.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-11-26 3:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-26 2:44 Can not install slime for emacs on my windows-7-64 ye eugene
2014-11-26 3:06 ` Alexis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).