git bash 下vim python 插件问题报错找不到 msys-python3.7m.dll

git bash 下vim python 插件问题

在vim 下使用
打命令

:python3 print("hellow")

报错 :

E370: 无法加载库 msys-python3.7m.dll
E263: 抱歉,此命令不可用,无法加载 Python 库。

已经确认安装了 python3.7

在python3 的安装目录下

ls  /d/python3/

DLLs     Lib          NEWS.txt     python37.dll  tcl
Doc      libs         python.exe   pythonw.exe   Tools
include  LICENSE.txt  python3.dll  Scripts       vcruntime140.dll

该目录也在 path 下

解决

复制 python37.dll 为 msys-python3.7m.dll 即可

cp python37.dll msys-python3.7m.dll 

你可能感兴趣的:(git bash 下vim python 插件问题报错找不到 msys-python3.7m.dll)