My end goal is to have the YouCompleteMe Pluggin for Vim. As a prerequiste I need my Vim to be configured for python3.
Previous when configuring with python I used the following command
./configure --enable-pythoninterp=yes
From searching it looks like the configure command for python3 is
./configure --enable-python3interp=yes --with-python3-config-dir=????
Unfortunately all the search results shows a pathway of /usr/lib/python3... No such path exists for me.
I do have python 3, running which python3 results in /usr/bin/python3
How can I find the route to my python3 config dir?
-configfor the other python versions but not 3./configure --enable-python3interp=yes? --with-python-config-dir is deprecated. Or maybe this link can help -> vi.stackexchange.com/questions/18211/…--with-python3-commandended up working with a new version of python3, thanks.