名前¶
perlbrew - Perl 環境マネージャー
概要¶
perlbrew [options] [init|install|installed|switch]
# Initialize
perlbrew init
# Pick a prefered CPAN mirror
perlbrew mirror
# Install some Perls
perlbrew install perl-5.12.1
perlbrew install perl-5.13.3
# Install from a git checkout
cd /path/to/src/perl
perlbrew install .
# List which perls are installed
perlbrew installed
# Switch perl in the $PATH (hash -r clears the PATH cache in the shell)
perlbrew switch perl-5.13.3
hash -r
perl -v
# Turn it off. Disable it.
perlbrew off
# Turn it back on. Re-enable it.
perlbrew switch perl-5.13.3
perlbrew [options] [init|install|installed|switch]
# 初期化
perlbrew init
# CPAN ミラーの選択
perlbrew mirror
# 任意の Perl をインストール
perlbrew install perl-5.12.1
perlbrew install perl-5.13.3
# git チェックアウトからのインストール
cd /path/to/src/perl
perlbrew install .
# インストールされている perl の一覧
perlbrew installed
# $PATH にある perl の切り替え (hash -r はシェルでの PATH キャッシュを消す)
perlbrew switch perl-5.13.3
hash -r
perl -v
# off にすれば無効化されます
perlbrew off
# 再び有効化します
perlbrew switch perl-5.13.3
CONFIGURATION¶
By default perlbrew builds and installs copies of perl into $ENV{HOME}/perl5/perlbrew
. To use a different directory, set the PERLBREW_ROOT
shell variable before running perlbrew.
デフォルトでは、perlbrew は $ENV{HOME}/perl5/perlbrew
に perl のコピーを作り、 インストールします。perlbrew を実行する前にシェル変数 PERLBREW_ROOT
を設定することで、別のディレクトリを使うことができます。
COMMANDS¶
- init
-
Run this once to setup the
perlbrew
directory ready for installing perls into. Run it again if you decide to changePERLBREW_ROOT
.perl のインストール先の
perlbrew
ディレクトリを準備するために最初に実行してください。PERLBREW_ROOT
を変更したいときにも、これを再び実行してください。 - mirror
-
Run this if you want to choose a specific CPAN mirror to install the perls from. It will display a list of mirrors for you to pick from. Hit 'q' to cancel the selection.
perl をインストールするときに使う CPAN ミラーを選択するときに実行します。 ミラーの一覧が表示されるので、そこから選択してください。 「q」を打てば選択をキャンセルできます。
- install perl-<version>
-
Build and install the given version of perl.
指定したバージョンの perl のビルドとインストールを実行します。
- install /path/to/perl/git/checkout/dir
-
Build and install from the given git checkout dir.
git チェックアウトしたディレクトリからビルドとインストールを実行します。
- installed
-
List the installed versions of perl.
インストールされている perl のバージョンの一覧表示。
- switch perl-<version>
-
Switch to the given version. You may need to run 'rehash' (or 'hash -r') after this command.
指定したバージョンに切り替えます。このコマンドの後に 'rehash' (もしくは 'hash -r') の実行が必要になるかもしれません。
- off
-
Disable perlbrew. Use
switch
command to re-enable it. Use 'rehash' or 'hash -r' again to clear the cache.perlbrew を無効化します。
switch
コマンドを使うことで再び有効化することができます。 キャッシュの削除には 'rehash' か 'hash -r' を使います。
オプション¶
- -?| --help
-
prints this help.
このヘルプを表示します。
- -?| --help
-
prints the version of App::perlbrew.
App::perlbrew のバージョンを表示します。
- -f| --force
-
Force installation of a perl.
perl を強制インストールします。
- -n| --notest
-
Skip the test suite
テストをスキップします。
- -q| --quiet
-
Log output to a log file rather than STDOUT. This is the default. The log file is saved in $ROOT/build.log
ログの出力先を STDOUT (標準出力) ではなくファイルにします。この挙動が初期値です。 ログファイルは $ROOT/build.log に保存されます。
- -v| --verbose
-
Log output to STDOUT rather than a logfile.
ログの出力先をログファイルではなく STDOUT (標準出力) にします。
- --as
-
Install a given perl under an alias.
インストールする perl の名前を指定します。
perlbrew install perl-5.6.2 -as legacy-perl
- -D, -U, -A
-
pass through switches to the perl Configure script.
perl の Configure スクリプトにスイッチをそのまま渡します。
perlbrew install perl-5.10.1 -D usemymalloc -U uselargefiles
説明¶
Read App::perlbrew for more complete documentation.
更なる完璧なドキュメントは App::perlbrew を読んでください。
翻訳について¶
翻訳者:IWAI, Masaharu <iwaim.sub@gmail.com>
Perlドキュメント日本語訳 Project にて、 Perlモジュール、ドキュメントの翻訳を行っております。
http://sourceforge.jp/projects/perldocjp/
http://www.freeml.com/ctrl/html/MLInfoForm/perldocjp@freeml.com
http://perldoc.jp/