How can I fix [Ycm] Invalid ycm path in vs code?

Viewed 326

In Vs code whenever i open VS code application this message is pop up.

[Ycm] Invalid ycm path

What is the meaning of this message and how do i can fix this?

1 Answers

Hi,I have fixed this note,but looks like ycm does not work.

--

I use this link to fix.

My command have some differences.

git clone https://github.com/Valloric/YouCompleteMe.git

cd YouCompleteMe

git submodule update --init --recursive

cd third_party

mkdir ycmd_build

cmake -G "Unix Makefiles" . /Users/xx/software_cfg/ycm/YouCompleteMe/third_party/ycmd/cpp

Then copy 'ycm_core.cpython-310-darwin.so' to VS Code ycmd path.

enter image description here

--

After these setting,I found ycm still not work.

Just add one dir path in [Ycmd: Path], the note will disappear.

Related