I am trying to install emacs jedi. I am using Melpa to install it, in my init file I have
(require 'jedi)
;; Standard Jedi.el setting
(add-hook 'python-mode-hook 'jedi:setup)
(setq jedi:complete-on-dot t)
I have access to all of the commands, but whenever I run them I get the error that says "You may need to run "M-x jedi:install-server" ", and then when run install server I get "ImportError: No module named jedi". I'm not sure where to go from here - I looked at the solution here Installing python server for emacs-jedi but that seems to be a different issue, and everywhere I've looked online I haven't seen a step by step solution.