Updated to rust-1.34.1-stable. When I tried to install rls issuing rustup component add rls-preview --toolchain stable following is the error:
info: downloading component 'rls'
info: installing component 'rls'
info: rolling back changes
error: failed to install component: 'rls-preview-x86_64-unknown-linux-gnu', detected conflict: '"share/doc/rls/LICENSE-MIT"'
platform: debian9.8
try this:
rustup toolchain uninstall stable-x86_64-unknown-linux-gnu
rustup toolchain install stable-x86_64-unknown-linux-gnu
rustup component add rls rust-analysis rust-src
it work for me
Update to rust-1.35-stable solved the problem.
Most helpful comment
try this:
it work for me