linux 重装erlang,含 No curses library functions found 错误
2021/7/17 7:10:16
本文主要是介绍linux 重装erlang,含 No curses library functions found 错误,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、重新安装 erlang版本
1、先移除服务器已经安装的erlang 版本
yum remove erlang
如果erlang包不存在,将会显示 Nothing to do.
[root@io app]# yum remove erlang No match for argument: erlang No packages marked for removal. Dependencies resolved. Nothing to do. Complete!
2、下载 otp_src_23.2.5.tar.gz 包
3、解压 otp_src_23.2.5.tar.gz 包
# tar -zxvf otp_src_23.2.5.tar.gz
4、如果 ./configure 出现问题:
问题日志: configure: error: No curses library functions found ERROR: /data/app/otp_src_23.2.5/erts/configure failed! Killed
日志缺库,
执行命令安装 ncurses-devel 库即可
# yum -y install ncurses-devel
5、创建erlang安装目录 /usr/local/erlang
进入 otp_src_23.2.5 文件
编译erlang程序到安装目录 ./configure --prefix=/usr/local/erlang
把源码包编译成二进制可执行文件 make && make install
# mkdir /usr/local/erlang # cd otp_src_23.2.5 # ./configure --prefix=/usr/local/erlang # make && make install
6、添加配置文件,并生效
# vi /etc/profile profile 文件结尾添加 【 #set erlang environment 】 【 export PATH=$PATH:/usr/local/erlang/bin 】 # source /etc/profile
7、查看 erlang 版本
[root@iot-dev-002 etc]# erl -version Erlang (SMP,ASYNC_THREADS,HIPE) (BEAM) emulator version 11.1.8
这篇关于linux 重装erlang,含 No curses library functions found 错误的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南