-
Notifications
You must be signed in to change notification settings - Fork 921
configure: error: "curses not found" #19
Comments
This is not a known issue. Curses is used to compile tmux. If tmux is installed via a package it is not compiled. May I suggest to install tmux via rpm to prevent this error? |
This is now fixed. See c9/install#24 (comment) |
Just tried to install, seems I have to install glibc-static too |
This is not fixed or is broken again. It fails for me on Oracle Linux. [wwz1@dovaolv01d c9sdk]$ uname -a |
simply install ncurses-dev on ubuntu by sudo apt-get install ncurses-dev |
I solved by installing glibc-static |
楼上的完美解决了我的问题,thanks,我的环境是centos6.5 |
yum install glibc-static |
|
$ sudo yum install glibc-static ncurses-devel |
|
CentOS 6 here, thanks @MyKings that's what I needed. |
have anyone tried this on kali linux im having a hard time getting ncurses on there . has anyone have this problem? |
Or, build ncurses from source when you don't have root access (using
# Download & extract source (anywhere)
wget https://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.1.tar.gz
tar -xvf ncurses-6.1.tar.gz
cd ncurses-6.1
# Install
./configure --prefix=$WORKSPACE
make
make install
./configure --prefix=$WORKSPACE \
CFLAGS="-I$WORKSPACE/include -I$WORKSPACE/include/ncurses" \
LDFLAGS="-L$WORKSPACE/lib" |
configure: error: "curses not found" when installing on centos 7. Is this a known issue?
[root@play c9sdk]# rpm -qa|grep curse
ncurses-libs-5.9-13.20130511.el7.x86_64
ncurses-5.9-13.20130511.el7.x86_64
ncurses-devel-5.9-13.20130511.el7.x86_64
ocaml-curses-1.0.3-17.el7.x86_64
ncurses-base-5.9-13.20130511.el7.noarch
ocaml-curses-devel-1.0.3-17.el7.x86_64
is installed.
The text was updated successfully, but these errors were encountered: