OS X.

有幾種選擇:

  • Perlbrew

    # You need to install Command Line Tools for Xcode  
    curl -L https://install.perlbrew.pl | bash
    
  • Perlbrew 有執行緒支援:

    # You need to install Command Line Tools for Xcode  
    curl -L https://install.perlbrew.pl | bash
    

    在安裝 perlbrew 之後,如果你想安裝帶有執行緒支援的 Perl,只需執行:

    perlbrew install -v perl-5.26.0 -Dusethreads
    
  • 來自:

    tar -xzf perl-version.tar.gz
    cd perl-version
    ./Configure -de
    make
    make test
    make install