0

I am trying to use Webkit, but I can't get emacs to find the necessary python library EPC that I installed via pip (in Anaconda). Here is the error message:

Debugger entered--Lisp error: (file-error "Cannot open load file" "No such file or directory" "epc")
  require(epc)
  eval-buffer(#<buffer  *load*> nil "/Users/evar/.emacs.d/myPackages/webkit.el" nil t)  ; Reading at buffer position 2348
  load-with-code-conversion("/Users/evar/.emacs.d/myPackages/webkit.el" "/Users/evar/.emacs.d/myPackages/webkit.el" nil t)
  require(webkit)

I am using High Sierra.

2
  • The mysterious "High Sierra" appears to be a version of Mac OSX. For future reference, people who don't use a Mac are unlikely to recognise names like that, so more clarity would be helpful. Commented Feb 21, 2018 at 19:11
  • I strongly recommend to use xwidgets-webkit instead. Commented Feb 21, 2018 at 20:24

1 Answer 1

1

require(epc) in the stack trace indicates that epc.el is not found in your Emacs load-path variable.

You'll probably want to do something like:

(add-to-list 'load-path "/path/to/directory")

for the directory where epc.el lives.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.