neoclide / coc-python

Python extension for coc.nvim, fork of vscode-python
573 stars 51 forks source link

Not finding python Packages #279

Open iukej opened 3 years ago

iukej commented 3 years ago

Hi, excited to begin using coc.

I've been trying to use Intellisense for Python packages on my machine. Most of the things I need are Conda installed, and so they reside within

/Users/myuser/anaconda3/lib/python3.7/site-packages.

So far, I've tried: 1) Changing the Python Interpreter to /Users/myuser/anaconda3/bin/python 2) Adding "python.autoComplete.extraPaths": ["/Users/myuser/anaconda3/lib/python3.7/site-packages"] to my ~/.vim/coc-settings.json file.

I'm able to autocomplete from packages that come standard with python (i.e. datetime) without issue, but cannot code complete anything I've installed afterwards. Any idea what I can do for this? It was my understanding that Microsoft's Language Library Server works well with pandas, numpy, etc. The autocomplete works perfectly in Visual Studio.

I'm running:

Thank you!