Install k6
In this milestone, you install k6 on your machine using your preferred package manager and verify that it is working as expected.
Choose the installation method for your operating system:
In your terminal, install k6 using your chosen method.
For macOS:
brew install k6For Linux (Debian/Ubuntu):
sudo gpg -k sudo gpg --no-default-keyring --keyring /usr/share/keyrings/k6-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5AD17C747E3415A3642D57D77C6C491D6AC1D69 echo "deb [signed-by=/usr/share/keyrings/k6-archive-keyring.gpg] https://dl.k6.io/deb stable main" | sudo tee /etc/apt/sources.list.d/k6.list sudo apt-get update sudo apt-get install k6For Docker:
docker pull grafana/k6Verify the installation by checking the k6 version:
k6 versionYou should see version information displayed in your terminal.
Troubleshooting
Explore the following troubleshooting topic if you need help:
In the next milestone, you write your first k6 test script with HTTP requests and checks.
page 3 of 8