-
Rust 기본 PATH 및 Rust ❤️(rustup default nightly or stable)내맘대로 버젼 바꾸기❤️코딩Coding/Rust❤️Optimization❤️ 2022. 6. 17. 20:12728x90
버젼 바꾸는 방법
// nightly 로 바꾸기 rustup default nightly // stable버젼으로 바꾸기 rustup default stable // 버젼 업데이트 시키기 rustup update
러스트 기본 설정
Welcome to Rust! This will download and install the official compiler for the Rust programming language, and its package manager, Cargo. Rustup metadata and toolchains will be installed into the Rustup home directory, located at: /Users/globalyoung/.rustup This can be modified with the RUSTUP_HOME environment variable. The Cargo home directory located at: /Users/globalyoung/.cargo This can be modified with the CARGO_HOME environment variable. The cargo, rustc, rustup and other commands will be added to Cargo's bin directory, located at: /Users/globalyoung/.cargo/bin This path will then be added to your PATH environment variable by modifying the profile files located at: /Users/globalyoung/.profile /Users/globalyoung/.bash_profile /Users/globalyoung/.zshenv You can uninstall at any time with rustup self uninstall and these changes will be reverted. Current installation options: default host triple: aarch64-apple-darwin default toolchain: stable (default) profile: default modify PATH variable: yes
러스트 Uninstall 하는 방법
https://users.rust-lang.org/t/how-to-uninstall-rust/149
반응형'코딩Coding > Rust❤️Optimization❤️' 카테고리의 다른 글
6. Multicore Programming | MIT OpenCourseWare (0) 2022.08.28 Rust❤️VecDeque를 써야할 때 __러스트 최적화👍 (0) 2022.08.14 cargo add 활용법❤️귀찮은 features넣는 법 -F이게 좋네 ㅋ❤️(Cargo.toml 넣기 귀찮다. ㅋㅋ) (0) 2022.07.26 Rust연습] Closures❤️러스트의 클로져는 기본적으로 레퍼런스로 땡겨 쓴다. 멀티 쓰레드 할 때 spawn 에서는 꼭 move를 해 줘야 한다. arc기본 사용법 (0) 2022.07.11 rust❤️] reduce vs fold의 차이(methods) (0) 2022.06.16 Rust❤️] map과 for_each의 차이점(for_each는 collect를 안 해도 된다 , 나같이 귀찮은거 싫어하는 사람에게 최고 구만ㅋ (0) 2022.06.16 cargo bench 사용법❤️-Benchmark testing your Rust Code | Let's Get Rusty (0) 2022.06.15 Rust❤️rayon과 일반 기능{into_par_iter() vs into_iter()}❤️의 차이는 얼마나 날까?(concurrency의 대단함 (0) 2022.06.14