博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下安装Perl
阅读量:5869 次
发布时间:2019-06-19

本文共 1050 字,大约阅读时间需要 3 分钟。

[root@strong ~]# wget http://www.cpan.org/src/5.0/perl-5.26.1.tar.gz

[root@strong perl-5.26.1]# cd /usr/local/

[root@strong perl-5.26.1]# tar zxvf /root/perl-5.26.1.tar.gz
[root@strong local]# cd perl-5.26.1/
[root@strong perl-5.26.1]# ./Configure -de
[root@strong perl-5.26.1]# make
[root@strong perl-5.26.1]# make test
[root@strong perl-5.26.1]# make install

测试安装结果:

[root@strong perl-5.26.1]# perl -v

This is perl 5, version 26, subversion 1 (v5.26.1) built for x86_64-linux
Copyright 1987-2017, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl". If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.
[root@strong perl-5.26.1]#

使用perl写第一个程序:

[root@strong perl-5.26.1]# perl -e 'print "Hello World ! \n"';

Hello World !

 

转载于:https://www.cnblogs.com/winfosy/p/9478970.html

你可能感兴趣的文章
linux下tar.gz、tar、bz2、zip等解压缩、压缩命令
查看>>
VBS 调试
查看>>
4、设计模式循序渐进-结构型模式
查看>>
KDE 开发入门指导(KDE Development – A Beginner's Guide)
查看>>
欧洲新闻媒体与谷歌的冲突
查看>>
Android平台下使用Ksoap2调用传递复杂对象
查看>>
kindeditor 上传文件控件优化下。。
查看>>
一篇读懂深度学习中「训练」和「推断」的区别
查看>>
推论统计2-T测试
查看>>
只有程序员能看懂的西游记
查看>>
删除任何文件
查看>>
手机传感器
查看>>
webSocket前台实现
查看>>
tomcat8常用配置说明
查看>>
SaltStack 2014.1.4 Windows minion 端安装后无法启动的问题解决
查看>>
找回消失的网站网页
查看>>
快速掌握Eclipse Plugin / RCP开发思想
查看>>
Java 多线程写文件
查看>>
我用了两个月的时间才理解 let
查看>>
[JS] this, 你到底指向谁?
查看>>