-
-
Save aanari/8c0a0ba119d1df7716f2b12e389bb714 to your computer and use it in GitHub Desktop.
Install tmux 2.7 on Ubuntu 16.04 from source
This file contains hidden or 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
sudo apt-get update | |
sudo apt-get install -y libevent-dev libncurses-dev make | |
cd /tmp | |
curl -LO https://github.com/tmux/tmux/releases/download/2.7/tmux-2.7.tar.gz | |
tar xvzf tmux-2.7.tar.gz | |
cd tmux-2.7/ | |
./configure && make | |
sudo make install | |
cd .. | |
rm -rf ./tmux-2.7* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment