I'm using Minted 2.1, that I have installed through tlmgr, and Texmaker 4.1. Compiling the following piece of code (straight from the documentation) :
\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage{minted}
\begin{document}
X\mintinline{python}{print(x**2)}X
\end{document}
... results in both X's on two consecutive lines, and nothing else (no error either).
However, compiling the same code from the terminal using the command-line from Texmaker's options window :
pdflatex --shell-escape -synctex=1 -interaction=nonstopmode %.tex
... works as expected. How can I troubleshoot & solve this, so I can compile from Texmaker ?

pdflatex --shell-escapeproduces this without error in tl1025 – David Carlisle Nov 08 '15 at 18:02