Skip to main content

Windows 常用软件

包管理工具

winget

Windows 10/11 系统默认安装

scoop

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
irm get.scoop.sh | iex

#use proxies
irm get.scoop.sh -Proxy 'http://<ip:port>' | iex

#configure custom directory by setting Environment Variables
$env:SCOOP='D:\Applications\Scoop'
[Environment]::SetEnvironmentVariable('SCOOP', $env:SCOOP, 'User')
$env:SCOOP_GLOBAL='F:\GlobalScoopApps'
[Environment]::SetEnvironmentVariable('SCOOP_GLOBAL', $env:SCOOP_GLOBAL, 'Machine')
irm get.scoop.sh | iex

#scoop config
scoop config show_update_log false
scoop config aria2-enabled true
scoop config aria2-warning-enabled false
scoop config cat_style "numbers,changes,header"
scoop config ignore_running_processes true
scoop config use_external_7zip true
scoop config use_lessmsi true
scoop config no_junction false
scoop config scoop_repo https://jihulab.com/Ryanjie/Scoop
scoop config scoop_branch develop

终端

Windows Terminal

Windows 11 系统默认安装。

winget install --id Microsoft.WindowsTerminal --source winget
winget install --id Microsoft.WindowsTerminal.Preview --source winget

scoop install windows-terminal-win10
scoop install windows-terminal-win11

PowerShell Core 7

  • TUNA Mirrors

    winget install --id Microsoft.Powershell --source winget
    winget install --id Microsoft.Powershell.Preview --source winget

    scoop install powershell
    scoop install powershell-preview

starship

scoop install starship

Add-Content -Path $Profile -Value "Invoke-Expression (&starship init powershell)"

字体

scoop install sarasa-mono-sc-nerd-font # Sarasa Mono SC Nerd Font
scoop install CascadiaCode-NF-Mono # Cascadia Code NF Mono
scoop install FiraCode-NF-Mono # Fira Code NF Mono
scoop install Iosevka-NF-Mono # Iosevka NF Mono
scoop install JetBrainsMono-NF-Mono # JetBrains Mono NF Mono
scoop install LxgwWenKai # LXGW WenKai
scoop install LxgwWenKai-Screen # LXGW WenKai Screen

开发环境

git

winget install --id Git.Git --source winget

scoop install git

sapling

scoop install sapling

Add-Content -Path $Profile -Value "`nSet-Alias -Name sl -Value `"`$(scoop prefix sapling)\\sl.exe`" -Force -Option Constant,ReadOnly,AllScope"

fnm

scoop install fnm

export FNM_NODE_DIST_MIRROR=https://mirrors.tuna.tsinghua.edu.cn/nodejs-release/
export FNM_NODE_DIST_MIRROR=https://mirror.nju.edu.cn/nodejs-release/
fnm install 16
fnm use 16

cnpm

npm install -g cnpm --registry=https://registry.npmmirror.com

nrm

# npm --registry=https://registry.npmmirror.com
npm install -g nrm --registry=https://registry.npmmirror.com
nrm ls # 查看可用的源
nrm use taobao # 切换到淘宝源

npm set registry https://registry.npmmirror.com # 注册模块镜像
npm set disturl https://npmmirror.com/mirrors/node # node-gyp 编译依赖的 node 源码镜像
## 以下选择添加
npm set sass_binary_site https://registry.npmmirror.com/mirrors/node-sass # node-sass 二进制包镜像
npm set electron_mirror https://registry.npmmirror.com/mirrors/electron/ # electron 二进制包镜像
npm set puppeteer_download_host https://registry.npmmirror.com/mirrors # puppeteer 二进制包镜像
npm set chromedriver_cdnurl https://registry.npmmirror.com/mirrors/chromedriver # chromedriver 二进制包镜像
npm set operadriver_cdnurl https://registry.npmmirror.com/mirrors/operadriver # operadriver 二进制包镜像
npm set phantomjs_cdnurl https://registry.npmmirror.com/mirrors/phantomjs # phantomjs 二进制包镜像
npm set selenium_cdnurl https://registry.npmmirror.com/mirrors/selenium # selenium 二进制包镜像
npm set node_inspector_cdnurl https://registry.npmmirror.com/mirrors/node-inspector # node-inspector 二进制包镜像
npm cache clean --force # 清空缓存

yarn config set registry https://registry.npmmirror.com # 注册模块镜像
yarn config set disturl https://npmmirror.com/mirrors/node # node-gyp 编译依赖的 node 源码镜像
## 以下选择添加
yarn config set sass_binary_site https://registry.npmmirror.com/mirrors/node-sass # node-sass 二进制包镜像
yarn config set electron_mirror https://registry.npmmirror.com/mirrors/electron/ # electron 二进制包镜像
yarn config set puppeteer_download_host https://registry.npmmirror.com/mirrors # puppeteer 二进制包镜像
yarn config set chromedriver_cdnurl https://registry.npmmirror.com/mirrors/chromedriver # chromedriver 二进制包镜像
yarn config set operadriver_cdnurl https://registry.npmmirror.com/mirrors/operadriver # operadriver 二进制包镜像
yarn config set phantomjs_cdnurl https://registry.npmmirror.com/mirrors/phantomjs # phantomjs 二进制包镜像
yarn config set selenium_cdnurl https://registry.npmmirror.com/mirrors/selenium # selenium 二进制包镜像
yarn config set node_inspector_cdnurl https://registry.npmmirror.com/mirrors/node-inspector # node-inspector 二进制包镜像
yarn cache clean # 清空缓存

python

scoop install python
scoop install python27
scoop install python35 python36 python37 python38 python39 python310 python311

pypi

#临时使用
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
python -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip

python -m pip install --upgrade pip
#douban
pip config set global.index-url https://pypi.douban.com/simple
pip config set global.trusted-host pypi.douban.com
# ali
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip config set global.trusted-host mirrors.aliyun.com
#tencent
pip config set global.index-url https://mirrors.cloud.tencent.com/pypi/simple
pip config set global.trusted-host mirrors.cloud.tencent.com
#163
pip config set global.index-url https://mirrors.163.com/pypi/simple/
pip config set global.trusted-host mirrors.163.com
#huawei
pip config set global.index-url https://repo.huaweicloud.com/repository/pypi/simple
pip config set global.trusted-host repo.huaweicloud.com
#tuna
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip config set global.trusted-host pypi.tuna.tsinghua.edu.cn
#xjtu
pip config set global.index-url https://mirrors.xjtu.edu.cn/pypi/simple
pip config set global.trusted-host mirrors.xjtu.edu.cn
#sjtu
pip config set global.index-url https://mirror.sjtu.edu.cn/pypi/web/simple
pip config set global.trusted-host mirror.sjtu.edu.cn

pip config set global.extra-index-url "https://pypi.tuna.tsinghua.edu.cn/simple https://mirrors.zju.edu.cn/pypi/web/simple https://mirrors.xjtu.edu.cn/pypi/simple"

Oracle JDK

scoop install oraclejdk11-portable
scoop install oraclejdk8-portable oraclejdk8

代码编辑器

scoop install neovim vscode obsidian typora
scoop install idea-ultimate
scoop install webstorm
scoop install pycharm-professional
scoop install goland

数据库

scoop install mysql mysql-workbench
scoop install mysql56 mysql57
scoop install mongodb
scoop install mongodb34 mongodb36
scoop install ravendb
scoop install postgresql
scoop install postgresql10 postgresql11 postgresql12 postgresql13
scoop install redis
scoop install sqlite

scoop install navicat-premium navicat-premium-chs
scoop install navicat-premium-15 navicat-premium-15-chs
scoop install datagrip
scoop install dbeaver dbeaver-sdu

常用工具

清理优化工具

scoop install wise-care-365-portable wise-care-365-portable-gh wise-care-365-portable-qiuquan
scoop install dismplusplus
scoop install geekuninstaller
scoop install revouninstaller
scoop install hibit-uninstaller
scoop install bulk-crap-uninstaller
scoop install ccleaner ccleaner-gh
scoop install optimizer
scoop install sophiapp
scoop install sandboxie-plus-np sandboxie-classic-np

解压缩工具

scoop install 7zip 7zip-beta
scoop install bandizip bandizip6 bandizip-zd423
scoop install nanazip
scoop install peazip

截图工具

scoop install snipaste snipaste-beta
scoop install screencapture
scoop install qqscreenshot
scoop install flameshot
scoop install sharex

下载工具

scoop install idm-elchupacabra-portable idm-elchupacabra
scoop install thunderx-zd423 thunder11
scoop install baidunetdisk-portable baidunetdisk6-zd423 baidunetdisk7-zd423
scoop install ecloud ecloud-zd423
scoop install 115pc

视频播放器

scoop install potplayer
scoop install potplayer-wenlei potplayer-dev-wenlei
scoop install mpc-be
scoop install bilibili-portable
scoop install tencent-video-zd423

音乐播放器

scoop install spotify
scoop install youtube-music
scoop install cloudmusic cloudmusic-zd423
scoop install yesplaymusic
scoop install qqmusic-zd423
scoop install listen1desktop
scoop install musicplayer2
scoop install foobox-cn foobox-en
scoop install lx-music-desktop
scoop install foobar2000

办公软件

scoop install acrobat-2017 acrobat-2017-update-202201-pack acrobat-2017-update-202208-pack
scoop install wps2019pro-c2y-nocef wps2019pro-c2y-cef
scoop install wxwork-portable
scoop install feishu-portable
scoop install dingtalk-portable
scoop install pdf-xchange-editor-zd423
scoop install pdf24-creator-portable pdf24-creator
scoop install pdfpatcher
scoop install picgo picgo-sdu

聊天软件

scoop install qq
scoop install qq-zd423-portable qq-xueyu-portable qq-ntr-dreamcast qq-ntr-dreamcast-portable qq-dreamcast qq-dreamcast-portable
scoop install wechat-portable
scoop install wechat-zd423 wechat-qiuquan
scoop install telegram
scoop install kotatogram kotatogram-beta
scoop install 64gram
scoop install forkgram

浏览器

scoop install firefox firefox-beta
scoop install firefox-tete009-portable
scoop install iceweasel iceweasel-chs
scoop install librewolf

scoop install googlechrome googlechrome-beta googlechrome-canary googlechrome-dev
scoop install chrome-stable chrome-beta chrome-canary chrome-dev
scoop install chrome-stable-shuax chrome-beta-shuax chrome-canary-shuax chrome-dev-shuax

scoop install msedge-stable msedge-beta msedge-canary msedge-dev
scoop install msedge-stable-shuax msedge-beta-shuax msedge-canary-shuax msedge-dev-shuax
scoop bucket add dorado https://github.com/chawyehsu/dorado
scoop install microsoftedge microsoftedge-beta microsoftedge-canary microsoftedge-dev

scoop install centbrowser centbrowser-beta

scoop install runningcheese-chrome runningcheese-edge runningcheese-firefox