Skip to content Skip to sidebar Skip to footer

Vim Compiled With Python Support But Can't See Sys Version

I compiled the development version of Vim with both Python 2 and Python 3 support. The output of vim --version has +python/dyn and +python3/dyn in it. I ran the configure file with

Solution 1:

I had a similar issue on my Debian box. If you're using a Debian-based system, you will not be able to load both Python libraries simultaneously. That's why when you set --enable-python-interp and --enable-python3-interp they always load with the /dyn suffix.

If your vim plugins don't need both versions, you should just pick one of the versions and stick with it. The links below provide more info.

Explained by Debian maintainer

Vim Python Support

P.S. - In case you tried this on Windows as well, loading either Python version will work, so the /dyn isn't an issue there.

Post a Comment for "Vim Compiled With Python Support But Can't See Sys Version"