Kite not finding pythonpath libraries, although python does

463 Views Asked by At

I checked Kite documentation but could not understand if Kite only (it is already a great tool) covers core main - core libraries or if it is expected to find and support also personal libraries, for example libraries in pythonpath.

In case, suggestions on how to add them?

Using Anaconda and VIM on Ubuntu.

1

There are 1 best solutions below

4
On BEST ANSWER

We recently released a new feature for this, and have published help docs that we'll continue updating. Here are the instructions for how you can add libraries to Kite's directory so you're sure it indexes them.

(We're debugging some aspects of this, so let us know if you run into issues or have further questions.)

First, make the /libraries directory in the .kite directory if it's not already there:

mkdir -p ~/.kite/libraries/

Next, create a symbolic link to the library you want indexed by Kite:

ln -s /your_lib_dir/ ~/.kite/libraries/

Finally, check the link is there:

cd .kite/
ls libraries/your_lib_dir/

Kite will then be able to index those specified libraries.