I am trying to make a simple pie chart with pgf-pie, but for a reason unknown to me the labels I use don't display correctly.
Here is the chunk of code I've copied from the manual into my .tex file :
\begin{tikzpicture}
\pie[color ={ cyan!10 , cyan!40, cyan!70, cyan!100}, explode=0.1] {10/A, 20/B, 30/C, 40/D}
\end{tikzpicture}
Here is a screenshot of what I get :
And here is a picture of what I'd like to obtain :

Does anybody knows why I get these numbers and how to get rid of them ?
edit : Here is a minimal working example
\documentclass{article}
\usepackage[frenchb]{babel}
\usepackage{pgf-pie}
\begin{document}
\begin{tikzpicture}
\pie[color ={ cyan!10 , cyan!40, cyan!70, cyan!100}, explode=0.1]{10/A, 20/B, 30/C, 40/D}
\end{tikzpicture}
\end{document}





! File ended while scanning use of \\pie.Please edit the question and add a minimal but working example (MWE) instead of a code snippet. – Schweinebacke Jul 07 '17 at 15:36pgf-pie. So you will get a warning, if you load it using\usepackage{pgf-pie-0.2.1/pgf-pie}. And if you loadpgfplots(which is not needed forpgf-pie) you should set optioncompat(see thepgfplotsmanual for more information). – Schweinebacke Jul 07 '17 at 15:57\usepackage{pgf-pie-0.2.1/pgf-pie}is rather strange. – Zarko Jul 07 '17 at 16:02@Zarko yep I changed that line to
– Alexandre Leonardi Jul 10 '17 at 08:45\usepackage{pgf-pie}; the question was still opened because I still got the same unwanted behavior when compiling the code in my post with pdflatex.