I am trying to generate glossaries in my LaTeX document using the article class and am using TeXStudio
I used the below code but nothing gets printed
\documentclass{article}
\usepackage{titlesec}
\usepackage[utf8]{inputenc}
\usepackage[hidelinks]{hyperref}
\usepackage{glossaries}
\makeglossaries
\newglossaryentry{culdesac}{name=cul-de-sac,description={passage or street closed at one end},plural=culs-de-sac}
\newacronym{led}{LED}{light-emitting-diode}
\begin{document}
\section{This is my section}
Some text
\end{document}
I googled and found out that I would need Arara to generate and print glossaries. I installed Arara.exe under C:\Program Files\arara\
and made a new command based on below link
But I am getting the error :
Error: Could not start the command: C:\Program Files\arara\arara.exe -v -l "my_text_file"
Can someone help me please?
I just want to print acronyms and glossaries in my article.

arara --version. What do you get? – Mar 24 '14 at 23:19arara -v -l % | | txs:///view. It should work. This may be useful too: Has anyone managed to use \glossaries with TeXstudio on Windows? :) – Mar 24 '14 at 23:25