MSYS2 配置
MSYS2 配置
魔力刘易斯MSYS2 是一个软件包管理器和环境,用于 Windows 系统的 POSIX 兼容性层。
下载与安装
添加到终端
命令行:%MSYS2%\msys2_shell.cmd -defterm -here -no-start -ucrt64
启动目录:%MSYS2%\home\%username%
图标:%MSYS2%\ucrt64.ico
设置中文
在MSYS2 的终端窗口中
在 /etc/profile 文件后面添加:
export LANG=zh_CN.UTF-8
export LC_ALL=zh_CN.UTF-8
更换清华源
在MSYS2 的终端窗口中输入
sed -i "s#https\?://mirror.msys2.org/#https://mirrors.tuna.tsinghua.edu.cn/msys2/#g" /etc/pacman.d/mirrorlist*
基本命令
更新软件包
pacman -Syu
安装软件包
pacman -S <包名>
卸载
pacman -R <包名>
卸载软件包及其依赖
pacman -Rsc <包名>
卸载所有不再已安装软件包被使用的软件包
pacman -Rns $(pacman -Qdtq)