Created
October 12, 2012 05:00
-
-
Save solar/3877413 to your computer and use it in GitHub Desktop.
Install zsh 5.0.0 on CentOS/RH 6.3
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
# install zsh-5.0.0 | |
# prerequisite: gcc ncurses-devel readline-devel pcre-devel zlib-devel | |
curl -L http://jaist.dl.sourceforge.net/project/zsh/zsh/5.0.0/zsh-5.0.0.tar.bz2 | tar jx | |
cd zsh-5.0.0/ | |
./configure --prefix=/usr/local/zsh/5.0.0 --enable-cap --enable-pcre --enable-multibyte | |
make | |
sudo make install | |
sudo alternatives --install /usr/local/bin/zsh zsh /usr/local/zsh/5.0.0/bin/zsh 50000 |
Thanks.
configure: error: in /home/public/zsh-5.0.0': configure: error: "No terminal handling library was found on your system. This is probably a library called 'curses' or 'ncurses'. You may need to install a package called 'curses-devel' or 'ncurses-devel' on your system." See
config.log' for more details
# yum install ncurses-devel -y
It worked for me too. Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
zsh 5.0.5 works for me on 6.4 too. Thanks