Yujun's Blog

Vue - 初始环境安装

这里安装 npm 与 node.js, 通过 npm -v 与 node -v 验证安装 nvm (Node Version Manager)可从 项目release 查看最近版本curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.

pyenv 安装 3.8.19 出现错误

pyenv install 3.8.19出现错误ModuleNotFoundError: No module named 'readline'WARNING: The Python readline extension was not compiled. Missing the GN

Rust - 初识变量管理

变量绑定与解构绑定变量类似于其他语言的赋值, 绑定内存对象的 所有权let a = "hello world";变量的可变性变量默认是不可变的, 如上面的 a, 默认是不可再改变其他值, 如需要可变的变量,使用 mut 关键字:let mut a = "hello w

#rust  

Rust - 安装

安装curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh验证$ cargo -Vcargo 1.76.0 (c84b36747 2024-01-18)$ rustc -Vrustc 1.76.0 (07dca48

#rust