I've just recently tried to install Helix editor (again) because I wanted to give it another shot. However, it looks as though it now requires the rustup-nightly
toolchain in order to install it.
However, now when I try to install it I get this error:
~/Downloads/helix/ $ cargo install --path helix-term
error: failed to parse manifest at `/home/dave/Downloads/helix/helix-term/Cargo.toml`
Caused by:
feature `edition2021` is required
this Cargo does not support nightly features, but if you
switch to nightly channel you can add
`cargo-features = ["edition2021"]` to enable this feature
I installed rust
with pkgin
and it seems as though it did not come with rustup
which would allow me to switch to nightly with this command
rustup default nightly
Would it be advisable to uninstall rust
and install rust cargo rustup
using the recomended method on the Rust-Lang website?
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh