How to configure Perl to run latexindent on Mac OS Catalina

The “latexindent” is a Perl script that indents a LaTeX file to make it easier to read, and is included in MacTeX. As most of us install the MacTeX, it should be easy to use latexindent. However, the default installation does not work because it requires extra configuration on Perl. To make it worse, this install isn’t trivial at all. You can find questions on Stackoverflow. Here’s what I did in order to set up the latexindent on MacOS without using brew to install Perl again.

Install xcode command line tools

In order to use C compilers or git on Mac, it is necessary to install command line tools. On the terminal, run this command.

xcode-select --install

Configure the CPATH environment

Due to some weird reasons, some necessary files for compiling some packages are hidden on Mac OS Catalina. In order to make some header files to be available for compilers, we need to set up the CPATH variable. Otherwise, there will be an error message saying “Fatal error: ‘EXTERN.h’ file not found”.

To find this file, one can run the following command.

find /Library/Developer/CommandLineTools/SDKs -name EXTERN.h -print

There may be many versions; you can choose the one that matches the version of Perl installed on Mac. In my case, the version of Perl was v5.18.4. The version of Perl can be found by “perl -v”. On my Mac, EXTERN.h for this version was in /Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk/System/Library/Perl/5.18/darwin-thread-multi-2level/CORE/EXTERN.h. Thus, I set the CPATH environment as follows.

export CPATH=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk/System/Library/Perl/5.18/darwin-thread-multi-2level/CORE

Install Perl packages by cpan

The latexindent requires a few Perl packages to be installed. Here is the command to run.

cpan -i Log::Log4perl Log::Dispatch::File YAML::Tiny File::HomeDir Unicode::GCString

Like me, most of you will see many questions, because in its first run, it requires to configure itself. Here’s what I chose.

What approach do you want?  (Choose 'local::lib', 'sudo' or 'manual')
 [local::lib] sudo

After all this, latexindent should be ready. If not, then you can try to install missing Perl packages again by using “cpan -i”.

I use latexindent on Visual Studio Code. The standard extension for LaTeX, LaTeX Workshop, uses latexindent to indent a LaTeX file.

5 thoughts on “How to configure Perl to run latexindent on Mac OS Catalina”

  1. cooooooool!just notice that when run
    ==export CPATH=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk/System/Library/Perl/5.18/darwin-thread-multi-2level/CORE==
    the path may not be the same. The most easiest way!

Leave a Comment

Your email address will not be published. Required fields are marked *