I have followed the quick start to install jedi. el-get-list-packages shows jedi as required, but no jedi namespace is available, so that I can not run jedi:install-server.
How are packages installed with el-get loaded? How can I force a load? How do I know where the packages are stored?
Maybe jedi doesn't provide any autoloads? In that case you could either provide your own, or just
requirethe library outright in your init file....but no; looking at the repo your
jedi:install-serverfunction injedi-core.elhas an autoload cookie. el-get ought to have processed that on installation. If you have a~/.emacs.d/el-get/.loaddefs.elfile, check for the autoload declaration there?el-getpresumably still puts things in~/.emacs.d/el-get/by default (I use quite an old version, so I'm unsure of what's changed).n.b. If the
jedilibrary is in theload-path, thenM-x locate-library RET jedi RETwill tell you where it is located. (Andfind-librarycan visit it.)