Skip to content

Instantly share code, notes, and snippets.

@wujiyu115
Forked from richardtape/install-oh-my-zsh-on-ubuntu
Last active December 9, 2016 07:03
Show Gist options
  • Save wujiyu115/45b176f285be1e360237152b7f2d1eab to your computer and use it in GitHub Desktop.
Save wujiyu115/45b176f285be1e360237152b7f2d1eab to your computer and use it in GitHub Desktop.
Install Oh My ZSH on Ubuntu 14.04
# Where is the location of your current shall. Useful if we need to revert
echo $0
# Install ZSH
sudo apt-get install zsh
# Instal GIT
sudo apt-get install git-core
# Install OhMyZSH
curl -L http://install.ohmyz.sh | sh
or
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
# Change Shell
chsh -s $(which zsh)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment