When I use the following code to draw an RDF graph:
\begin{tikzpicture}[node distance=2.75cm,>=stealth']
\node[vertex style=Turquoise] (Rk) {Righteous Kill};
\node[vertex style=BurntOrange, above of=Rk,xshift=2em] (BD) {Bryan Dennehy}
edge [<-,cyan!60!blue] node[text style,above]{starring} (Rk);
\end{tikzpicture}
I get the following error:
Package pgf Error: Unknown arrow tip kind 'stealth''.
See the pgf package documentation for explanation.
Type H <return> for immediate help.
...
l.150 ...picture}[node distance=2.75cm,>=stealth']
How can I solve it please

\usetikzlibrary{arrows}or, preferably, update the deprecated syntax and usearrows.meta. – cfr Jul 18 '18 at 00:31