3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Windows11環境構築備忘録

Last updated at Posted at 2022-09-03

自分用の備忘録
増えたら修正する。

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

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?