自分用の備忘録
増えたら修正する。
winget
- wingetによるpower shellのInstall
winget search Microsoft.PowerShell
winget install --id Microsoft.Powershell --source winget
- wingetによるOhMyPoshのInstall
winget install JanDeDobbeleer.OhMyPosh -s winget
Chocolatey
- ChocolateyのInstall (管理者権限のPower Shell)
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
- pythonのインストール
- トラブル時の対応
- 環境変数のpathの確認
- アプリ実行エイリアスのpythonをオフにする
- トラブル時の対応
choco install python -y
Scoop
- Scoopのインストール (Power Shell)
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time
irm get.scoop.sh | iex
scoop install neovim
scoop install fzf
scoop install poppler