Forked from richardtape/install-oh-my-zsh-on-ubuntu
Created
February 20, 2017 21:33
-
-
Save allebb/d4d5a22dabe4646a70c3d81e1da7e634 to your computer and use it in GitHub Desktop.
Install Oh My ZSH on Ubuntu 14.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
# Where is ZSH installed i.e. /bin/zsh | |
which zsh | |
# Change Shell | |
chsh | |
<sudo password> | |
/bin/zsh # Or whatever the path was from above |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment