DEV Community

Cover image for Install Zellij on WSL
0xkoji
0xkoji

Posted on

1

Install Zellij on WSL

What is Zellij?

Zellij is a workspace aimed at developers, ops-oriented people and anyone who loves the terminal. Similar programs are sometimes called "Terminal Multiplexers".
repo

https://github.com/zellij-org/zellij

Install Zellij on WSL

step1: install WSL

https://learn.microsoft.com/en-us/windows/wsl/install

step2: install curl and build-essential

sudo apt update
sudo apt install curl build-essential
Enter fullscreen mode Exit fullscreen mode

step3: install rust and cargo

when you run the following command, you will be asked to choose an installation option.
If there is no specific reason, I recommend to choose option 1.

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Enter fullscreen mode Exit fullscreen mode
# check rust version
rustc --version
rustc 1.82.0

# check cargo version
koji@kj-minis ~/dev/blog % cargo --version
cargo 1.82.0
Enter fullscreen mode Exit fullscreen mode

step4: install zellij

cargo install --locked zellij
Enter fullscreen mode Exit fullscreen mode

step5: check zellij version and run zellij

# check zellij version
zellij --version
zellij 0.41.2
Enter fullscreen mode Exit fullscreen mode
# run zellij
zellij
Enter fullscreen mode Exit fullscreen mode

Image description

Heroku

Built for developers, by developers.

Whether you're building a simple prototype or a business-critical product, Heroku's fully-managed platform gives you the simplest path to delivering apps quickly β€” using the tools and languages you already love!

Learn More

Top comments (0)

Playwright CLI Flags Tutorial

5 Playwright CLI Flags That Will Transform Your Testing Workflow

  • 0:56 --last-failed: Zero in on just the tests that failed in your previous run
  • 2:34 --only-changed: Test only the spec files you've modified in git
  • 4:27 --repeat-each: Run tests multiple times to catch flaky behavior before it reaches production
  • 5:15 --forbid-only: Prevent accidental test.only commits from breaking your CI pipeline
  • 5:51 --ui --headed --workers 1: Debug visually with browser windows and sequential test execution

Learn how these powerful command-line options can save you time, strengthen your test suite, and streamline your Playwright testing experience. Click on any timestamp above to jump directly to that section in the tutorial!

Watch Full Video πŸ“ΉοΈ

πŸ‘‹ Kindness is contagious

DEV is better (more customized, reading settings like dark mode etc) when you're signed in!

Okay