के लिए "लोड फ़ाइल नहीं खोल सकती" मैंने मार्मलेड स्थापित किया है और कुछ रोचक पैकेज डाउनलोड किए हैं। लेकिन अब, जब मैं Emacs शुरू मैं इस त्रुटि मिलती है:ईएलपीए/मार्मालेड रिपोर्ट ~/.emacs.d/elpa/archives/-pkg
Cannot open load file: c:/Documents and Settings/Carlos/Datos de programa/.emacs.d/elpa/archives/-pkg
अगर मैं --debug-init
उपयोग करते हैं, मैं:
Debugger entered--Lisp error: (file-error "Cannot open load file" "c:/Documents and Settings/Carlos/Datos de programa/.emacs.d/elpa/archives/-pkg")
load("c:/Documents and Settings/Carlos/Datos de programa/.emacs.d/elpa/archives/-pkg" nil t)
(if (file-directory-p pkg-dir) (load (concat pkg-dir ... "-pkg") nil t))
(let ((pkg-dir ...)) (if (file-directory-p pkg-dir) (load ... nil t)))
package-load-descriptor("c:/Documents and Settings/Carlos/Datos de programa/.emacs.d/elpa/" "archives")
(lambda (name) (package-load-descriptor dir name))("archives")
mapc((lambda (name) (package-load-descriptor dir name)) ("anything-1.287" "anything- complete-1.86" "anything-config-0.4.1" "archive-contents" "archive-contents~" "archives" "auto-indent-mode-0.35" "builtin-packages" "builtin-packages~" "clojure-mode-1.7.1" "clojurescript-mode-0.5" "coffee-mode-0.3.0" "color-file-completion-1.0.1" "color-theme-6.6.1" "color-theme-eclipse-0.0.2" "color-theme-github-0.0.3" "color-theme-railscasts-0.0.2" "color-theme-twilight-0.1" "css-mode-1.0" "drag-stuff-0.0.3" "evernote-mode-0.41" "find-file-in-project-2.0" "flymake-coffee-0.4" "flymake-haml-0.5" "flymake-ruby-0.4" "flymake-shell-0.5" "haml-mode-3.0.14" "highlight-parentheses-1.0.1" "html-script-src-0.0.2" "inf-ruby-2.1" "js-comint-0.0.1" "js2-mode-20090814" "lua-mode-20100617" "package.el" "package.el~" "project-local-variables-0.2" "ruby-compilation-0.7" "ruby-electric-1.1" "ruby-mode-1.1" "slime-20100404" "tabbar-2.0.1" "tabbar-ruler-0.2" "yasnippet-0.6.1" "yasnippet-bundle-0.6.1" "zenburn-1.8"))
(if (file-directory-p dir) (mapc (lambda ... ...) (directory-files dir nil "^[^.]")))
(lambda (dir) (if (file-directory-p dir) (mapc ... ...)))("c:/Documents and Settings/Carlos/Datos de programa/.emacs.d/elpa/")
mapc((lambda (dir) (if (file-directory-p dir) (mapc ... ...))) ("c:/Documents and Settings/Carlos/Datos de programa/.emacs.d/elpa/" "/usr/share/emacs/site-lisp/elpa/"))
package-load-all-descriptors()
package-initialize()
(progn (package-initialize))
(if (load (expand-file-name "~/.emacs.d/elpa/package.el")) (progn (package-initialize)))
(when (load (expand-file-name "~/.emacs.d/elpa/package.el")) (package-initialize))
eval-buffer(#<buffer *load*> nil "c:/Documents and Settings/Carlos/Datos de programa/.emacs" nil t) ; Reading at buffer position 9019
load-with-code-conversion("c:/Documents and Settings/Carlos/Datos de programa/.emacs" "c:/Documents and Settings/Carlos/Datos de programa/.emacs" t t)
load("~/.emacs" t t)
#[nil "\205\264
इस फ़ाइल में मौजूद नहीं है। मैंने Google के साथ इस समस्या की खोज करने की कोशिश की है लेकिन मुझे कुछ भी नहीं मिला।
मैं एक ही समस्या में चल रहा हूं और यह समाधान मेरे लिए काम नहीं कर रहा है। जब मैं package.el फ़ाइल को '~/.emacs.d/elpa/package.el' में जोड़ता हूं और' .emacs' buffer को eval करता हूं, मुझे मिलता है (फ़ाइल-त्रुटि "लोड फ़ाइल" "पैकेज नहीं खोल सकता") – PPPaul
आपके Emacs init फ़ाइल के लिए 2 संभावित स्थान हैं। एक '~/.emacs' है, और दूसरा' ~/.emacs.d/init.el' है। चूंकि आप पूर्व का उपयोग कर रहे हैं, मेरा मानना है कि '~/.emacs.d' आपके 'लोड-पथ' पर नहीं डाला गया है। इसके बजाय बाद के लेआउट का उपयोग करने का प्रयास करें। आखिरकार, सबसे अच्छा समाधान हालिया Emacs संस्करण का उपयोग करना है ताकि 'package.el' बंडल हो। कई उपयुक्त स्थिर रिलीज रहे हैं। – sanityinc
मैंने अपनी .emacs फ़ाइल हटा दी।चीजें अब बहुत बेहतर काम करती हैं – PPPaul