-
Notifications
You must be signed in to change notification settings - Fork 152
Installation fails in CentOS 7 #21
Comments
Same problem that's been around for a while for CentOS6 as well. The above didn't help for me as it insists on compiling it's own libevent and ncurses anyway, but it's not using the correct linking args for tmux. I changed the tmux configure line to this and it works for me now: ./configure CFLAGS="-I$C9_DIR/local/include -I$C9_DIR/local/include/ncurses" CPPFLAGS="-I$C9_DIR/local/include -I$C9_DIR/local/include/ncurses" LDFLAGS="-static-libgcc |
Thanks for sharing. So apparently you changed the install.sh file? Maybe you could send a pull request? I think this would help a lot of folks out. |
Actually, more worrying is that tmux currently gets installed in /usr/local/bin instead of the user .c9 folder. Although, the prefix is set...
Note: doesn't occur when tmux is installed from RPM |
This is still open?! Have all the C9 developers gone on vacation or something? |
Steps to reproduce:
curl -L https://raw.githubusercontent.com/c9/install/master/install.sh | bash
expected: .c9 dir should be full and install should be complete.without switching to root or sudo
result: Error: intall fails because dependencies are not found for curses, livbevent, and sudo was needed to complete install
Fix: The Following command fixed the issue for me:
sudo yum install libevent-devel ncurses-devel glibc-static
This is because of tmux, more details found here: https://groups.google.com/forum/#!topic/iterm2-discuss/wfYur0iSXdQ
The text was updated successfully, but these errors were encountered: