<Python, Vim> python3のインストールとpythonのpathの調べ方、Jediでpandasを有効化するため
python
のlibrary
のpath
の調べかた。
python3 -c "import sys; print(sys.path)"
Vim
上では、
:py3(print(sys.path))
で、msys2
にpython3
を入れる。
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
ここで発見。
msys2
とmingw64
はちゃうものらしい。。
だから、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"
を書き込む。