<Python, Vim> python3のインストールとpythonのpathの調べ方、Jediでpandasを有効化するため

pythonlibrarypathの調べかた。

python3 -c "import sys; print(sys.path)"

Vim上では、

:py3(print(sys.path))

で、msys2python3を入れる。

pacman -S python 3.3.3-4
pacman -S python3
pacman -S mingw-w64-x86_64-python3-pip
pacman -S mingw-w64-x86_64-python3-numpy
pacman -S mingw-w64-x86_64-python3-pandas
pacman -S mingw-w64-x86_64-python3-scipy

ここで発見。 msys2mingw64はちゃうものらしい。。 だから、C:\msys64のフォルダに次の2つのbat fileがあったのか、、

mingw64_shell.bat
msys2_shell.bat

mingw64_shell.batで起動すると、

>echo $PATH
/mingw64/bin:/usr/local/bin: ...

mingw64/binが追加されてる。。。 なるへそ。。。

で、本題。

python補完させるには、vimに正しいlibraryを教えんといけん。

.bashrc

export PYTHONPATH="/mingw64/lib/python3.4/site-packages"

を書き込む。