I installed my rust toolchain via rustup (sudo snap install rustup --classic, then install the default stable toolchain.
When executing the installation command recommend in nextest's tutorial, I get the following error:
curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
tar: /home/ambrus/.cargo/bin: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
curl: (23) Failure writing output to destination
My rustup installed cargo here: /snap/bin/cargo.
It would be useful to create either a less intrusive setup process or the setup script detecting common cargo paths or using $(which cargo) in the tutorial instead of a hardcoded path.
I installed my rust toolchain via rustup (
sudo snap install rustup --classic, then install the default stable toolchain.When executing the installation command recommend in nextest's tutorial, I get the following error:
My rustup installed cargo here:
/snap/bin/cargo.It would be useful to create either a less intrusive setup process or the setup script detecting common cargo paths or using
$(which cargo)in the tutorial instead of a hardcoded path.