记录新装win10系统后,安装msys2的相关配置
安装msys2
msys官网:https://www.msys2.org/
下载链接:https://repo.msys2.org/distrib/x86_64/msys2-x86_64-20210228.exe
下载msys2-x86_64-20210228.exe
文件按照官网首页安装。
配置msys2终端home目录
msys2安装完后,默认C盘用户目录为home目录。
若想更换目录,需新增windows环境变量“HOME"。
windows开始菜单搜索“环境变量”,进入“系统属性”菜单,“高级”项,点击进入“环境变量”,新增用户和系统环境变量“HOME"值为”D:\Home“。
环境变量.PNG 环境变量2.PNG 环境变量3.PNG 环境变量4.PNG
然后进入msys2,输入pwd
查看是否已经更改“HOME"目录,如若未生效,重启系统再次查看。
更换msys2安装源
使用清华镜像,修改说明:https://mirrors.tuna.tsinghua.edu.cn/help/msys2/
文件位置为
修改msys2安装源.PNG
在相应的文件中## primary
部分,使用##
注释掉原有的Server,将清华对应的Server及值粘贴过去。
对应Server地址
编辑 /etc/pacman.d/mirrorlist.mingw32 ,在## primary
部分添加:
Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/mingw/i686
编辑 /etc/pacman.d/mirrorlist.mingw64 ,在## primary
部分添加:
Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/mingw/x86_64
编辑 /etc/pacman.d/mirrorlist.msys ,在## primary
部分添加:
Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/msys/$arch
然后执行 pacman -Sy
刷新软件包数据即可。
执行pacman -Syu
对所有安装进行更新。
安装emacs
因为已经新增了windows的环境变量“HOME",所以安装emacs后,同其他系统配置一样。配置文件直接放在”HOME"目录。
安装:pacman -S emacs
安装python
安装:pacman -S python
安装pip,下载“get-pip.py",使用正常linux安装流程,执行"python get-pip.py --user"。
更换pip安装源:pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
安装zsh和“ohmyzsh”
安装zsh:pacman -S zsh
安装“ohmyzsh”,因为github速度太慢,搜索国内镜像。gitee镜像地址:https://gitee.com/mirrors/oh-my-zsh
下载:wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh
修改“install.sh”文件。
将
REPO=${REPO:-ohmyzsh/ohmyzsh}
REMOTE=${REMOTE:-https://github.com/${REPO}.git}
更换为
REPO=${REPO:-mirrors/oh-my-zsh}
REMOTE=${REMOTE:-https://gitee.com/${REPO}.git}
网友评论