program env
nodejs
Section titled “nodejs”python
Section titled “python”# installsudo pacman -S rustuprustup是 Rust 官方推荐的安装和管理 Rust 版本的工具。rustc是 Rust 的编译器,用于将 Rust 代码编译为可执行文件。cargo是 Rust 的包管理器和构建工具,用于管理项目依赖、编译代码和发布包。rust-analyzer是一个用于 Rust 语言的智能代码分析工具,提供代码补全、错误检查等功能,常用于集成开发环境 (IDE) 中。可能需要 单独安装:sudo pacman -S rust-analyzer
csharp
Section titled “csharp”sudo pacman -S dotnet-sdk# out:extra/dotnet-runtime 9.0.8.sdk109-1 70.33 MiB 23.43 MiBextra/dotnet-targeting-pack 9.0.8.sdk109-1 47.59 MiB 6.41 MiBextra/netstandard-targeting-pack 9.0.8.sdk109-1 17.87 MiB 1.29 MiBextra/dotnet-sdk 9.0.8.sdk109-1 289.23 MiB 78.32 MiB
# uninstallsudo pacman -Rns dotnet-sdkscript
Section titled “script”dotnet tool install -g dotnet-script# set env## bash## fishset -U fish_user_paths $fish_user_paths /home/aa/.dotnet/tools # ~/.config/fish/fish_variables# uninstall, 需要先卸载 dotnet-scriptdotnet tool uninstall -g dotnet-script