pythonic-emacs / anaconda-mode

Code navigation, documentation lookup and completion for Python.
GNU General Public License v3.0
707 stars 87 forks source link

Need help debugging issues on Catalina #382

Open synic opened 4 years ago

synic commented 4 years ago

I'm using HEAD of emacs-plus on Catalina. It's the only version of Emacs I can get running without immediate crash.

anaconda-mode is just plain not working for me, and I'm wondering how I can debug it? If I run (anaconda-mode) I don't see any errors, but I also don't see any of the anaconda mode buffers (none of them are there).

I copied the contents of anaconda-mode-server-command to a standalone python script and ran it in a terminal, and that works just fine without errors (though I did see it install jedi and etc, which probably means it never got loaded in emacs).

CeleritasCelery commented 4 years ago

you can check if the server is running by evaluating (anaconda-mode-running-p). The port from the server should be listed in the buffer *anaconda-mode*. If that looks good you can try a simple command like anaconda-mode-eldoc-function on a function to see if it generates a response.

synic commented 4 years ago

(anaconda-mode-running-p) returns nil, and there is no *anaconda-mode* buffer. It doesn't seem like it's starting, but I don't see any errors

CeleritasCelery commented 4 years ago

Evaluate (anaconda-mode-bootstrap) which should get server running.