いろいろ試していたら、自分のPC環境がぐちゃぐちゃになってしまって、収拾がつかないので、Windowsサンドボックスできれいな環境構築を試していきます。
第2弾は Strawberry Perl です。
普段、Perl はなかなか使わなくなりましたが、CMake でビルドするときに必要になったりします。大昔は Windows で Perl 使うなら、Active Perl なんて選択肢もありましたが、最近では Strawberry Perl がメジャーらしいです。
では、さっそくインストールしてみます。
Strawberry Perl の公式サイトから、インストーラーをダウンロードしてインストールします。
今回は「strawberry-perl-5.32.1.1-64bit.msi」を選びました。
インストーラーを実行すると、次のような画面が表示されるので、Next をクリック。
続いて、ライセンスの同意を求められるので、Accept のチェックをつけて、Next をクリック。
インストールするフォルダーを指定できますが、今回は標準のまま、Next をクリック。
次の画面で Install をクリックするとインストールが始まります。
しばらく待つとインストール完了です。
コマンドプロントから、Perl コマンドが使えることを確認します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
Microsoft Windows [Version 10.0.19041.1706] (c) Microsoft Corporation. All rights reserved. C:\Users\WDAGUtilityAccount>perl --version This is perl 5, version 32, subversion 1 (v5.32.1) built for MSWin32-x64-multi-thread Copyright 1987-2021, 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. C:\Users\WDAGUtilityAccount>cpan Loading internal logger. Log::Log4perl recommended for better logging Unable to get Terminal Size. The Win32 GetConsoleScreenBufferInfo call didn't work. The COLUMNS and LINES environment variables didn't work. at C:\Strawberry\perl\vendor\lib/Term/ReadLine/readline.pm line 410. cpan shell -- CPAN exploration and modules installation (v2.28) Enter 'h' for help. cpan> |
cpan も普通に使えそうです。
システム環境変数は以下の3行が追加されました。
1 2 3 |
C:\Strawberry\c\bin C:\Strawberry\perl\site\bin C:\Strawberry\perl\bin |