How to install older version toolchain?

Hello.
I would like to have two different versions of toolchain installed - the latest one and e.g. v. 1.41.

How to do it?

You can use rustup.

rustup install 1.41.0

Then you can use it with

cargo +1.41.0 run

or use the various methods in rustup to set the default.

5 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.