Skip to content

Instantly share code, notes, and snippets.

@xtremebeing
Forked from tomasbasham/install_tmux_osx_no_brew
Last active February 4, 2026 17:42
Show Gist options
  • Select an option

  • Save xtremebeing/a87148068bc7168d414b9c4ccf231fef to your computer and use it in GitHub Desktop.

Select an option

Save xtremebeing/a87148068bc7168d414b9c4ccf231fef to your computer and use it in GitHub Desktop.
Install tmux on OSX WITHOUT brew
```
# Create a directory
mkdir ~/tmux-install
cd ~/tmux-install
# Get the files
curl -OL http://downloads.sourceforge.net/tmux/tmux-1.5.tar.gz
curl -OL http://downloads.sourceforge.net/project/levent/libevent/libevent-2.0/libevent-2.0.16-stable.tar.gz
# Extract them
tar xzf tmux-1.5.tar.gz
tar xzf libevent-2.0.16-stable.tar.gz
# Compile libevent
cd libevent-2.0.16-stable
./configure --prefix=/opt
make
sudo make install
# Compile tmux
cd ../tmux-1.5
LDFLAGS="-L/opt/lib" CPPFLAGS="-I/opt/include" LIBS="-lresolv" ./configure --prefix=/opt
make
sudo make install
# Link it
ln -s /opt/bin/tmux /usr/bin/tmux
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment