I'm trying to run NVvim using MacVim. It appears it's installed with Python3 support:
gvim --version
...
+python/dyn
+python3/dyn
...
When I try to initialize with Nvim I get the following error though:
Error detected while processing function NVIM_init[12]..<SNR>44_DefPython:
line 2:
E370: Could not load library /usr/local/Frameworks/Python.framework/Versions/3.7/Python
E263: Sorry, this command is disabled, the Python library could not be loaded.
This makes sense – the path /usr/local/Frameworks/Python.framework/Versions/3.7/Python doesn't exist. However, the Python 3.6 path does exist (/usr/local/Frameworks/Python.framework/Versions/3.6/Python). Is there a way to point Nvim to the proper path?
Thanks!
I'm trying to run NVvim using MacVim. It appears it's installed with Python3 support:
gvim --versionWhen I try to initialize with
NvimI get the following error though:This makes sense – the path
/usr/local/Frameworks/Python.framework/Versions/3.7/Pythondoesn't exist. However, the Python 3.6 path does exist (/usr/local/Frameworks/Python.framework/Versions/3.6/Python). Is there a way to point Nvim to the proper path?Thanks!