#1. Chocolateのインストール
windows用パッケージマネージャーのchocolateをインストールします.
管理者権限でpowershellを開き、
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
を実行します.
#2. nanoのインストール
choco install -y nano
を実行します.
##nanoが使えるようになりました!