Skip to content
  • Python安装地址

    shell
    # 去官网download
    https://www.python.org
    # 在华为镜像站download
    https://repo.huaweicloud.com/python/
  • Python快速更换pip源

    shell
    # 更新源到清华大学开源镜像站点
    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U
    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
  • uv 安装

    shell
    # https://docs.astral.sh/uv/getting-started/installation/
    # macos 安装
    brew install uv
    # windows 安装
    powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
  • Git下载

    shell
    # 官网
    https://git-scm.com
    # 华为源
    https://repo.huaweicloud.com/git-for-windows/
    https://repo.huaweicloud.com/git-for-macos/
  • vscode下载

    shell
    https://code.visualstudio.com

    vscode配置备份&恢复方式

    1. 下载安装插件 settings sync 插件github地址

    2. 点击使用github进行授权登录(需要在github上配置一个gist用来备份恢复)

    3. 使用快捷键上传配置及下载配置

      Upload Your Settings:Press Shift + Alt + U (macOS: Shift + Option + U)

      Download your Settings(Press Shift + Alt + D (macOS: Shift + Option + D)

  • vim配置

    推荐大神配置地址

    • 经典配置单

      将此ToolsDocs/src目录下的vimrc.vimrc复制到你的账户目录下,将其改名为.vimrc即可

    • 推荐配置单

    shell
    git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime
    sh ~/.vim_runtime/install_awesome_vimrc.sh
  • nodejs 下载

    下载地址

    • npm 换源(懒人一键操作)

      shell
      npm config set registry http://registry.npmmirror.com
    • npm 源恢复

      shell
      npm config set registry https://registry.npmjs.org
    • yarn 安装

      shell
      npm install --global yarn
  • golang 下载

    下载地址

    • 换源(懒人一键操作)

      shell
      go env -w GO111MODULE=on
      go env -w GOPROXY=https://goproxy.cn,direct
  • MySQL 下载

    下载地址

  • Java下载

    • jdk下载

    • 环境配置

      • 以zulu jdk为例
        shell
        // 1. 解压zulu jdk zip包
        // 2. 添加环境变量
        JAVA_HOME -> {解压地址}\zulu21.32.17-ca-jdk21.0.2-win_x64
        PATH -> %JAVA_HOME%\bin
        // 3. 测试安装
        java -version
        javac -version
  • Maven下载

    • Maven包下载

      shell
      // 去官网
      https://maven.apache.org/download.cgi
      // 去华为源
      https://mirrors.huaweicloud.com/apache/maven/maven-3/
    • 环境配置

      shell
      // 1. 解压Maven zip包
      // 2. 添加环境变量
      MAVEN_HOME -> {解压地址}\apache-maven-3.9.1
      PATH -> %MAVEN_HOME%\bin
      // 3. 测试安装
      mvn -version

最后更新: