반응형
1. 관리자 모드로 PowerShell을 실행합니다.
오른쪽 마우스를 누르면 관리자 권한으로 실행으로 실행하면 됩니다.
2. Chocolatey 패키지 매니저 설치
아래 명령어를 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'))
4. Chocolatey 패키지 매니저 설치 확인
choco
위의 명령어를 입력하여 Chocolatey 패키지 매니저가 잘 설치되었는지 확인합니다.
5. K6 설치
iwr -useb https://dl.k6.io/msi/k6-latest-amd64.msi -OutFile k6.msi; Start-Process msiexec.exe -Wait -ArgumentList '/i k6.msi /quiet'; rm k6.msi
이 명령어를 입력하면 K6가 설치됩니다.
반응형
'ETC > TIP' 카테고리의 다른 글
[github] LeetCode 깃허브 연동(LeetHub) 방법 (0) | 2025.03.26 |
---|---|
[React] 처음 프로젝트 생성 시 "이 시스템에서 스크립트를 실행할 수 없으므로 C:\Program Files\nodejs\npm.ps1 파일을 로드할 수 없습니다. 자세한 내용은 https://go.microsoft.com/fwlink/?LinkID=135170를 참조하십시오." 해결 방법 (0) | 2025.03.14 |
[thymeleaf] 타임리프 설명 및 문법 정리 (0) | 2024.11.13 |
[github] 백준/프로그래머스 깃허브 연동 (0) | 2024.07.28 |
[GIT] 형상관리 기법 GIT 설치 및 GitHub 연동 후 커밋하기 (0) | 2024.01.15 |