Tentando instalar o Atom. Não é possível iniciar o servidor de idiomas do Clangd

2

Eu sou relativamente novo no Ubuntu. Eu estou tentando configurar o Atom para escrever código com C ++ e eu recebo isso:

Tried to spawn process using executable /usr/bin/clangd, which does not exist.
Ensure you have correctly configured the path to Clangd in the package settings.

e

This can occur if you do not have Clangd installed or if it is not in your path.

Alguém pode me explicar em detalhes o que devo fazer? Eu tenho clang e llvm instalado pelo terminal com sudo apt-get install .

    
por Michaela 29.10.2017 / 18:55

1 resposta

4

Isso corrige o problema para mim no Ubuntu 17.10:

sudo apt purge clang
sudo apt autoremove
sudo apt install clang-5.0
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-5.0 100
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-5.0 100
sudo update-alternatives --install /usr/bin/clangd clangd /usr/bin/clangd-5.0 100
    
por Reini 01.11.2017 / 18:58