tkf / emacs-ipython-notebook

IPython notebook client in Emacs
tkf.github.com/emacs-ipython-notebook/
GNU General Public License v3.0
548 stars 51 forks source link

Required feature `ein-cell' was not provided after "Hit M-x ein:notebooklist-open to open notebook list" #167

Open rebcabin opened 9 years ago

rebcabin commented 9 years ago

blocked with ein immediately after install. Following the instructions:

M-x package-list-packages install ein

in emacs, then (require 'ein)

start ipython notebook server in other iterm window

then "Mx ein:notebooklist-open"

error is "Required feature `ein-cell' was not provided

GNU Emacs 24.3.1 (x86_64-apple-darwin11.4.2, Carbon Version 1.6.0 AppKit 1138.51) of 2013-05-13 on atago

any clues? i'm blocked with ein

millejoh commented 9 years ago

Note that as far as I can tell tkf is no longer supporting ein - the package you downloaded from MELPA is generated from my fork.

Just to be sure we aren't missing something obvious could you try the following:

  1. Delek the ein pacakge. Confirm in the elpa directory there are no older versions present; if there are delete those as well. Make sure you don't have ein installed anywhere else in your system too.
  2. Try a minimal init.el file like below.
  3. Reinstall ein from melpa.
  4. run M-x ein:dev-bug-report-template and fill it out best as you can.
(require 'package)
(add-to-list 'package-archives
                  '("melpa" . "http://melpa.milkbox.net/packages/") t)
(package-initialize)

(require 'ein)