zoukankan      html  css  js  c++  java
  • msys2 安装 基本配置

    下载

    https://mirror.tuna.tsinghua.edu.cn/msys2/distrib/

    特色源

    ├── etc
    │   ├── pacman.d
    │   │   ├── mirrorlist.mingw32
    │   │   ├── mirrorlist.mingw64
    │   │   └── mirrorlist.msys
    
    • mirrorlist.msys
    ##
    ## MSYS2 repository mirrorlist
    ##
    
    ## Primary
    ## msys2.org
    Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/msys/$arch
    Server = http://mirrors.ustc.edu.cn/msys2/msys/$arch/
    Server = http://repo.msys2.org/msys/$arch
    Server = http://downloads.sourceforge.net/project/msys2/REPOS/MSYS2/$arch
    Server = http://www2.futureware.at/~nickoe/msys2-mirror/msys/$arch/
    
    • mirrorlist.mingw64
    ##
    ## 64-bit Mingw-w64 repository mirrorlist
    ##
    
    ## Primary
    ## msys2.org
    Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/mingw/x86_64
    Server = http://mirrors.ustc.edu.cn/msys2/mingw/x86_64/
    Server = http://repo.msys2.org/mingw/x86_64
    Server = http://downloads.sourceforge.net/project/msys2/REPOS/MINGW/x86_64
    Server = http://www2.futureware.at/~nickoe/msys2-mirror/x86_64/
    Server = http://mirror.bit.edu.cn/msys2/REPOS/
    
    • mirrorlist.mingw32
    ##
    ## 32-bit Mingw-w64 repository mirrorlist
    ##
    
    ## Primary
    ## msys2.org
    Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/mingw/i686
    Server = http://mirrors.ustc.edu.cn/msys2/mingw/i686/
    Server = http://repo.msys2.org/mingw/i686
    Server = http://downloads.sourceforge.net/project/msys2/REPOS/MINGW/i686
    Server = http://www2.futureware.at/~nickoe/msys2-mirror/i686/
    

    刷新

    pacman -Syu
    

    安装软件

    pacman -S base
    pacman -S base-devel
    pacman -S mingw-w64-x86_64-toolchain
    pacman -S mingw-w64-x86_64-cmake mingw-w64-x86_64-extra-cmake-modules
    pacman -S vim tmux fzy git winpty
    pacman -S mingw-w64-x86_64-ag
    pacman -S mingw-w64-x86_64-clang
    pacman -S mingw-w64-x86_64-llvm
    pacman -S mingw-w64-x86_64-perl
    pacman -S mingw-w64-x86_64-python
    pacman -S mingw-w64-x86_64-python-pip
    pacman -S mingw-w64-x86_64-ctags
    
  • 相关阅读:
    git clone SSL error解决
    day11_文件读写
    python练习day0120
    day12_文件读写_return
    GIS开发常用算法原理分析
    SoapToolkit3.0分发技术
    平台符合性审查测试工具安装教程
    MapX编程详解(C++)MapX发布技术
    Google地图定位偏移矫正
    串口通信编程多线程异步方式
  • 原文地址:https://www.cnblogs.com/Searchor/p/14475218.html
Copyright © 2011-2022 走看看