Maybe someone aldready asked this, but I have the following problem.
I tried to compile an example I found here https://tex.stackexchange.com/a/483113/217249. I don't get any errors. I have sage installed and apparently sagetex.sty is known to pdflatex. However, I didn't get any pictures so far.
Here is my code:
\documentclass{amsart}
\usepackage{sagetex}
\begin{document}
An elegant plot of the stream lines of the vector field \(\sin x \partial_x + \cos y \partial y\).
\begin{sagesilent}
x, y = var('x y')
\end{sagesilent}
\begin{center}
\sageplot[width=\textwidth]{streamline_plot((sin(x), cos(y)), (x,-3,3), (y,-3,3))}
\end{center}
\end{document}
I'm not sure, maybe its not latex error at all...

sageon thesagetex.sagefilesagetexhas created for you? You need to actually run sage to do see the plot. – gjkf Jun 01 '20 at 15:30sagetexenvironments, so that the output is updated. How to do that? I'm not sure since I don't use TexStudio but I'm fairly certain that on Sagetex's wiki there's a guide for that. – gjkf Jun 01 '20 at 15:41