To install Zsh, follow these steps based on your operating system:
On Ubuntu/Debian:
Open your terminal and run:
sudo apt update
sudo apt install zsh
On macOS:
If you have Homebrew installed, you can use:
brew install zsh
On Fedora:
Use the following command:
sudo dnf install zsh
On Arch Linux:
Run:
sudo pacman -S zsh
After Installation:
To set Zsh as your default shell, run:
chsh -s $(which zsh)
Then, log out and log back in for the changes to take effect.
Verify Installation:
You can check if Zsh is installed by running:
zsh --version
If you have any more questions or need further assistance, feel free to ask!
