I want to use sagemath to draw some Auslander-Reiten quivers.
But when I use the following command by this site [Auslander-Reiten Quivers], like
DA = DiGraph([[1, 2], [2, 3]])
AR = DA.auslander_reiten_quiver()
It will say
AttributeError Traceback (most recent call last) /tmp/ipykernel_5300/610482001.py in <module> ----> 1 AR = DA.auslander_reiten_quiver()
AttributeError: 'DiGraph' object has no attribute 'auslander_reiten_quiver'
I do not know how to solve this question since I am not familiar with sagemath. My version of sagemath is $9.5$.
What should i do for this question ? Thanks!
(https://doc.sagemath.org/html/en/reference/quivers/sage/quivers/ar_quiver.html#sage.quivers.ar_quiver.AuslanderReitenQuiver)