-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
autocomplete numpy, sympy #119
Comments
But everything else works fine. For example, when I type "x = sympy.sym", it can complete "x = sympy.symbols". Is it normal? |
I did not check that, but try to put (require 'jedi) line below the line where you set server args. |
Thank you for your reply, Dronte. But it does not seem to work. My current setting: (require 'auto-complete)
(setq jedi:server-args
'("--sys-path" "/usr/lib/python3/dist-packages"
"--sys-path" "/usr/local/lib/python3.3/dist-packages"))
(require 'jedi)
(setq jedi:server-command (list "/usr/bin/python3" jedi:server-script))
(ac-linum-workaround)
(add-hook 'python-mode-hook 'jedi:setup)
(setq jedi:setup-keys t) ; optional
(setq jedi:complete-on-dot t) ; optional |
I have the same problem: with numpy and scipy I don't get function suggestions and doc. Works fine with other libraries such as, e.g., "os". I'm using My jedi.el configuration is (setq jedi:server-command '("c:/Anaconda/Scripts/jediepcserver.exe")) Note that I'm using the Anaconda python distribution on Windows 7 and have installed jediepcserver manually with |
I suppose this is |
I am running emacs24+python3 on Debian testing. I installed jedi via package.el.
I faced the same situation as in http://stackoverflow.com/questions/14708453/emacs-jedi-does-not-find-numpy-completions
But I am still not able to get it right. Here are my configurations related to jedi:
I also tried the virtualenv method (make PYTHON=python3 requirements) but the result is the same.
Thanks!
The text was updated successfully, but these errors were encountered: