美文网首页
设置Perl moduels目录

设置Perl moduels目录

作者: 余绕 | 来源:发表于2020-04-18 15:00 被阅读0次
  1. 设置perl module 的目录(in Windows)
print join("\n",@INC),"\n"
C:/Strawberry/perl/site/lib
C:/Strawberry/perl/vendor/lib
C:/Strawberry/perl/lib

2.设置perl module 的目录(in Linux)

print join("\n",@INC),"\n"
/etc/perl
/usr/local/lib/x86_64-linux-gnu/perl/5.26.1
/usr/local/share/perl/5.26.1
/usr/lib/x86_64-linux-gnu/perl5/5.26
/usr/share/perl5
/usr/lib/x86_64-linux-gnu/perl/5.26
/usr/share/perl/5.26
/usr/local/lib/site_perl
/usr/lib/x86_64-linux-gnu/perl-base

或者自己设置lib目录

PERL5LIB=$PERL5LIB:/my/perl/modules #目录自己设置

相关文章

  • 设置Perl moduels目录

    设置perl module 的目录(in Windows) 2.设置perl module 的目录(in Linu...

  • 【perl模块安装】-非root权限

    关于非root权限的perl用户,很多perl模块需要下载到自己指定的目录。 方法展示: 步骤一 设置安装路径 1...

  • perl系列-1:模块

    1.模块安装 1.1默认安装位置 perl根据来源指定三个目录:perl、vendor、site。 perl:存储...

  • 在 Perl 6 中设置超时

    在 Perl 6 中设置超时 在 Perl 5 中,我曾经使用信号设置超时(至少,这是一种简单且可预测的方式)。在...

  • Learning Perl 学习笔记 Ch13 文件目录操作

    Perl程序运行时以自己的工作目录(working directory)作为起点,Perl提供了一个和shell中...

  • pt工具之pt-query-digest

    1.先安装perl环境因为percona的工具都是用perl语言编写的 2.上传pt工具安装包进入目录 然后解压 ...

  • R 正则表达式

    前言 R中的正则表达式模式有三种 1、扩展正则表达式:默认方式 2、Perl风格正则表达式:设置参数perl = ...

  • Perl语言学习(一)Perl基础

    一、Perl基础 1、Perl概述 Perl的起源和发展Perl:Practical Extraction and...

  • Rmarkdown自动给目录编号

    通过设置YAML metadata 来实现。 toc设置目录; toc_deptn设置目录深度; number_s...

  • SQLite - Perl

    SQLite - Perl 安装 SQLite3 可使用 Perl DBI 模块与 Perl 进行集成。Perl ...

网友评论

      本文标题:设置Perl moduels目录

      本文链接:https://www.haomeiwen.com/subject/rcqbvhtx.html